* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    max-width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;

}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.search-bar input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar button {
    padding: 0.5rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.auth-buttons button {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login {
    background-color: #fff;
    color: #007bff;
    border: 1px solid #007bff;
}

.signup {
    background-color: #007bff;
    color: #fff;
}

.hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta {
    padding: 1rem 2rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
}

.quick-links {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background-color: #f8f9fa;
}

.link-card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.link-card h3 {
    margin-bottom: 1rem;
}

.link-card a {
    color: #007bff;
    text-decoration: none;
}

.featured-content, .testimonials {
    padding: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
}

.testimonial {
    min-width: 300px;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-right: 1rem;
    border-radius: 4px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content div {
    margin-bottom: 1rem;
}

.footer-content h3 {
    margin-bottom: 0.5rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
}

.social-media a {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.newsletter input {
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.newsletter button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

.social-media {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: rgb(0, 0, 0);
    background-color: #245389;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #3d80c4;
}

.page-title {
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.updates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.update-category {
    margin-bottom: 2rem;
}

.update-list {
    list-style: none;
}

.update-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: #007bff;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.test-series-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.test-category {
    margin-bottom: 2rem;
}

.test-list {
    list-style: none;
    padding: 0;
}

.test-item {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.test-item h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.test-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.test-link:hover {
    background-color: #0056b3;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.vision-statement {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vision-statement p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.community-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.social-platforms, .discussion-forum, .expert-contact {
    margin-bottom: 3rem;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.platform-link, .forum-link, .expert-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.platform-link:hover, .forum-link:hover, .expert-link:hover {
    transform: translateY(-5px);
}

.platform-link i, .forum-link i, .expert-link i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.telegram i {
    color: #0088cc;
}

.discord i {
    color: #7289da;
}

.forum-link i {
    color: #4CAF50;
}

.expert-link i {
    color: #FFA500;
}

.discussion-forum, .expert-contact {
    text-align: center;
}

.discussion-forum p, .expert-contact p {
    margin-bottom: 1rem;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    width: 95%;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.content-wrapper {
    display: flex;
    gap: 30px;
}

.tasks-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.daily-tasks, .weekly-tasks {
    margin-bottom: 40px;
}

.pomodoro-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.add-task {
    display: flex;
    margin-bottom: 25px;
}

.add-task input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1em;
}

.add-task button {
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.task-list {
    margin-bottom: 18px;
}

.task-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
}

.task-item.completed {
    background-color: #d4edda;
}

.progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    height: 22px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    height: 100%;
    background-color: #3498db;
    width: 0%;
    transition: width 0.3s ease;
}

.reset-button {
    padding: 12px 20px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pomodoro-config {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.pomodoro-config input {
    width: 80px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

#setPomodoro {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#setPomodoro:hover {
    background-color: #2980b9;
}

#setPomodoro:active {
    background-color: #2472a4;
}

#setPomodoro:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}

.timer {
    font-size: 64px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.timer-status {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.timer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.timer-buttons button {
    padding: 15px 23px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#totalPomodoroTime {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
}

#pomodoroRecords {
    margin-top: 25px;
    text-align: center;
}

#pomodoroRecords h3 {
    margin-bottom: 10px;
    color: #333;
}

#lastPomodoroSession {
    font-size: 1.2em;
    font-weight: bold;
    color: #3498db;
}

.motivational-quotes {
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.motivational-quotes h3 {
    margin-bottom: 15px;
    color: #333;
}

#quote {
    font-style: italic;
    font-size: 1.1em;
    color: #555;
}

.performance-chart {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.performance-chart h3 {
    margin-bottom: 15px;
    text-align: center;
}

#pomodoroChart {
    width: 100%;
    height: 300px;
}

.task-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
}

.task-item input[type="checkbox"] {
    margin-right: 10px;
}

.task-item span {
    flex-grow: 1;
}

.delete-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1em;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.delete-btn:hover {
    color: #c0392b;
}

/* Add these new styles and modify existing ones */

body {
    background-color: #f0f4f8;
    font-family: 'Arial', sans-serif;
}

.container-21 {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.container:hover {
    transform: translateY(-5px);
}



.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form input {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.auth-form input:focus {
    border-color: #3498db;
    outline: none;
}

.auth-form button {
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.auth-form button:hover {
    background-color: #2980b9;
}

p {
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Animation for form inputs */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form input {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.auth-form input:nth-child(1) { animation-delay: 0.1s; }
.auth-form input:nth-child(2) { animation-delay: 0.2s; }
.auth-form input:nth-child(3) { animation-delay: 0.3s; }
.auth-form input:nth-child(4) { animation-delay: 0.4s; }

.auth-form button {
    animation: fadeInUp 0.5s ease-out 0.5s forwards;
    opacity: 0;
}

/* Styles for the auth buttons on the main page */
.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-buttons .button {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.auth-buttons .login {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.auth-buttons .login:hover {
    background-color: #3498db;
    color: white;
}

.auth-buttons .signup {
    background-color: #3498db;
    color: white;
    border: 2px solid #3498db;
}

.auth-buttons .signup:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Add a subtle animation on hover */
.auth-buttons .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Add a click effect */
.auth-buttons .button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


/* Add these styles to your existing CSS file */

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-profile span {
    font-weight: bold;
    color: #3498db;
}

.user-profile button {
    padding: 8px 16px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-profile button:hover {
    background-color: #c0392b;
}

/* Add these styles and modify existing ones as needed */

/* General responsive adjustments */
body {
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    max-width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Hero section */
.hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 1rem;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .auth-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Hamburger menu for mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin-bottom: 4px;
    display: block;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
    }
}

/* Quick links and other sections */
.quick-links, .featured-content, .testimonials {
    padding: 2rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial {
    flex: 0 0 80%;
    scroll-snap-align: start;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-right: 1rem;
    border-radius: 4px;
}

/* Footer responsiveness */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1 1 200px;
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Modify and add these styles */

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 50px;
    max-width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .auth-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .auth-buttons .button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Adjust body content for mobile */
    .container {
        padding: 0 10px;
    }

    .quick-links, .featured-content, .testimonials {
        padding: 1rem 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        flex: 0 0 100%;
    }
}

/* Hamburger menu styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin-bottom: 4px;
    display: block;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-self: flex-end;
        margin-top: -40px; /* Adjust this value as needed */
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Add these styles to your existing CSS file */

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .tasks-container,
    .pomodoro-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .add-task input[type="text"] {
        width: 70%;
    }

    .add-task button {
        width: 30%;
    }

    .timer {
        font-size: 48px;
    }

    .timer-buttons button {
        padding: 10px 15px;
        font-size: 14px;
    }

    .pomodoro-config input {
        width: 60px;
    }

    #pomodoroChart {
        height: 200px;
    }
}

/* Additional responsive styles */
@media screen and (max-width: 480px) {
    .page-title {
        font-size: 20px;
    }

    .timer {
        font-size: 36px;
    }

    .timer-buttons button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .pomodoro-config input {
        width: 50px;
    }

    #pomodoroChart {
        height: 150px;
    }
}

/* Improve overall responsiveness */
.tasks-container,
.pomodoro-container {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.add-task,
.pomodoro-config {
    display: flex;
    margin-bottom: 15px;
}

.add-task input[type="text"],
.pomodoro-config input {
    flex-grow: 1;
    margin-right: 10px;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 10px;
}

.task-item input[type="checkbox"] {
    margin-right: 10px;
}

.task-item span {
    flex-grow: 1;
}

.progress-bar {
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.timer-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.timer-buttons button {
    flex-grow: 1;
    margin: 0 5px;
}

.motivational-quotes {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

/* Resources page styles */
.resources {
    padding: 40px 0;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.book {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.book:hover {
    transform: translateY(-5px);
}

.book-cover {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.book h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.book p {
    font-size: 14px;
    color: #666;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.modal-buttons .button {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

#modal-buy {
    background-color: #007bff;
}

#modal-download {
    background-color: #28a745;
}

.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .dark-mode-toggle:hover {
    background-color: #555;
    transform: scale(1.1);
  }
  
  /* Dark mode styles */
  body.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
  }
  
  body.dark-mode .container,
  body.dark-mode .tasks-container,
  body.dark-mode .pomodoro-container,
  body.dark-mode .book,
  body.dark-mode .task-item,
  body.dark-mode .motivational-quotes {
    background-color: #2a2a2a;
    color: #f0f0f0;
  }
  
  body.dark-mode header {
    background-color: #222;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  }
  
  body.dark-mode nav ul li a,
  body.dark-mode .auth-buttons .login {
    color: #f0f0f0;
  }
  
  body.dark-mode .auth-buttons .signup {
    background-color: #3498db;
    color: #f0f0f0;
  }
  
  body.dark-mode .progress-bar {
    background-color: #444;
  }
  
  body.dark-mode .progress {
    background-color: #3498db;
  }
  
  body.dark-mode .dark-mode-toggle {
    background-color: #f0f0f0;
    color: #333;
  }
  
  body.dark-mode .dark-mode-toggle:hover {
    background-color: #ddd;
  }

  /* Existing dark mode styles */
body.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

/* Additional dark mode styles */
body.dark-mode .container,
body.dark-mode .tasks-container,
body.dark-mode .pomodoro-container,
body.dark-mode .book,
body.dark-mode .task-item,
body.dark-mode .motivational-quotes,
body.dark-mode .footer-content,
body.dark-mode .testimonial,
body.dark-mode .link-card,
body.dark-mode .featured-content,
body.dark-mode .update-item,
body.dark-mode .test-item,
body.dark-mode .about-content,
body.dark-mode .vision-statement,
body.dark-mode .community-content,
body.dark-mode .platform-link,
body.dark-mode .forum-link,
body.dark-mode .expert-link,
body.dark-mode .modal-content {
    background-color: #2a2a2a;
    color: #f0f0f0;
}

body.dark-mode header,
body.dark-mode footer {
    background-color: #222;
    color: #f0f0f0;
}

body.dark-mode nav ul li a,
body.dark-mode .auth-buttons .login,
body.dark-mode .footer-content a,
body.dark-mode .read-more,
body.dark-mode .test-item h3,
body.dark-mode .platform-link,
body.dark-mode .forum-link,
body.dark-mode .expert-link {
    color: #f0f0f0;
}

body.dark-mode .auth-buttons .signup,
body.dark-mode .cta,
body.dark-mode .test-link,
body.dark-mode #modal-buy,
body.dark-mode #modal-download {
    background-color: #3498db;
    color: #f0f0f0;
}

body.dark-mode .progress-bar {
    background-color: #444;
}

body.dark-mode .progress {
    background-color: #3498db;
}

body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="password"],
body.dark-mode textarea {
    background-color: #333;
    color: #f0f0f0;
    border-color: #555;
}

body.dark-mode .book:hover,
body.dark-mode .platform-link:hover,
body.dark-mode .forum-link:hover,
body.dark-mode .expert-link:hover {
    background-color: #3a3a3a;
}

body.dark-mode .social-icon {
    background-color: #3498db;
    color: #f0f0f0;
}

body.dark-mode .social-icon:hover {
    background-color: #2980b9;
}

body.dark-mode .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg');
}

/* Adjust the dark mode toggle button for dark mode */
body.dark-mode .dark-mode-toggle {
    background-color: #f0f0f0;
    color: #333;
}

body.dark-mode .dark-mode-toggle:hover {
    background-color: #ddd;
}

body.dark-mode .quick-links {
    background-color: #2a2a2a;
}

body.dark-mode .link-card {
    background-color: #333;
    color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

body.dark-mode .link-card h3 {
    color: #f0f0f0;
}

body.dark-mode .link-card a {
    color: #3498db;
}

body.dark-mode .link-card a:hover {
    color: #2980b9;
}

/* styles.css */

body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

/* Add dark mode styles for specific elements */
body.dark-mode .exam-section {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-mode .detail-card {
    background-color: #2c2c2c;
    color: #ffffff;
}

/* Ensure links and buttons are also styled */
body.dark-mode a {
    color: #bb86fc;
}

body.dark-mode .btn-primary {
    background-color: #3700b3;
    color: #ffffff;
}
/* styles.css */

body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

body.dark-mode header {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-mode .page-title {
    background-color: #1e1e1e;
    color: #ffffff;
}

/* Add dark mode styles for specific elements */
body.dark-mode .exam-section {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-mode .detail-card {
    background-color: #2c2c2c;
    color: #ffffff;
}

body.dark-mode a {
    color: #bb86fc;
}

body.dark-mode .btn-primary {
    background-color: #3700b3;
    color: #ffffff;
}

/* Add these styles to your existing styles.css file */

.update-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.update-details h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.update-details #updateDate {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.update-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.update-details h2 {
    color: #444;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.update-details p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.update-details ul, .update-details ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.update-details li {
    margin-bottom: 0.5rem;
}

/* Dark mode styles */
body.dark-mode .update-details {
    background-color: #222;
    color: #f0f0f0;
}

body.dark-mode .update-details h1,
body.dark-mode .update-details h2 {
    color: #bb86fc;
}

body.dark-mode .update-details #updateDate {
    color: #a0a0a0;
}

/* Update details page styles */
.update-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.update-details h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.update-details #updateDate {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.update-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.update-details h2 {
    color: #444;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.update-details p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.key-details, .preparation-tips, .preparation-strategy, .important-links, .faq {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.key-details ul, .preparation-tips ol, .preparation-strategy ol, .important-links ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.key-details li, .preparation-tips li, .preparation-strategy li, .important-links li {
    margin-bottom: 0.5rem;
}

.key-details i, .preparation-tips i, .preparation-strategy i, .important-links i {
    margin-right: 0.5rem;
    color: #3498db;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-left: 1rem;
    border-left: 3px solid #3498db;
}

/* Dark mode styles */
body.dark-mode .update-details {
    background-color: #222;
    color: #f0f0f0;
}

body.dark-mode .update-details h1,
body.dark-mode .update-details h2 {
    color: #bb86fc;
}

body.dark-mode .update-details #updateDate {
    color: #a0a0a0;
}

body.dark-mode .key-details,
body.dark-mode .preparation-tips,
body.dark-mode .preparation-strategy,
body.dark-mode .important-links,
body.dark-mode .faq {
    background-color: #333;
}

body.dark-mode .faq-question {
    color: #bb86fc;
}

body.dark-mode .faq-answer {
    border-left-color: #bb86fc;
}

.logo a {
    text-decoration: none;
}

.book {
    border: 2px solid purple;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(128, 0, 128, 0.3);
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.book-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.update-category h3 {
    border: 1px solid #e6e6fa;  /* Light purple color */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.update-item {
    border: 1px solid #e6e6fa;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.read-more {
    display: inline-block;
    padding: 6px 12px;
    margin-top: 10px;
    background-color: #8a4fff;  /* Medium purple background */
    color: #ffffff;  /* White text */
    text-decoration: none;
    border-radius: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;  /* Slightly bolder text */
}

.read-more:hover {
    background-color: #6a2fff;  /* Darker purple on hover */
    color: #ffffff;  /* White text maintained on hover */
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(138, 79, 255, 0.3);  /* Purple-tinted shadow */
}

/* For dark mode */
@media (prefers-color-scheme: dark) {
    .read-more {
        background-color: #a070ff;  /* Lighter purple for dark mode */
        color: #000000;  /* Black text for contrast in dark mode */
    }

    .read-more:hover {
        background-color: #b590ff;  /* Even lighter purple on hover in dark mode */
        color: #000000;  /* Maintain black text on hover */
    }
}

@media (prefers-color-scheme: dark) {
    .performance-chart {
        background-color: #2a2a2a;
        color: #ffffff;
    }
    
    .performance-chart h3 {
        color: #ffffff;
    }
}

/* Base Styles */
body {
    transition: background-color 0.3s, color 0.3s;
}

.exam-section, .dropdown {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.exam-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.exam-icon, .dropdown-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: #007bff;
}

.exam-details, .dropdown-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-card h4 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.dropdown-content {
    display: none;
    padding-top: 1rem;
}

.dropdown-content.active {
    display: block;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

body.dark-mode .exam-section,
body.dark-mode .dropdown {
    background-color: #1e1e1e;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

body.dark-mode .detail-card {
    background-color: #2c2c2c;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

body.dark-mode .detail-card h4 {
    color: #7abfff;
}

body.dark-mode .btn-primary {
    background-color: #007bff;
    color: #ffffff;
}

body.dark-mode .btn-primary:hover {
    background-color: #0056b3;
}

body.dark-mode .dropdown-header,
body.dark-mode .dropdown-content {
    color: #ffffff;
}

body.dark-mode .dropdown-icon {
    color: #7abfff;
}

/* Dark Mode Toggle Button */
#toggle-dark-mode {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

#toggle-dark-mode:hover {
    background-color: #0056b3;
}

.team-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
  }
  
  .team-member {
    max-width: 300px;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
  }
  
  
  
  .team-member h3 {
    margin: 10px 0 5px;
    color: #333;
  }
  
  .role {
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
  }
  
  .bio {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
  }
  
  .social-links a {
    color: #333;
    margin: 0 5px;
    font-size: 1.2em;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #0066cc;
  }

  :root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #f8f8f8;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --role-color: #0066cc;
    --bio-color: #666666;
    --link-color: #333333;
    --link-hover-color: #0066cc;
  }
  
  @media (prefers-color-scheme: dark) {
    :root {
      --bg-color: #1a1a1a;
      --text-color: #e0e0e0;
      --card-bg: #2c2c2c;
      --card-shadow: rgba(0, 0, 0, 0.3);
      --role-color: #4d9fff;
      --bio-color: #b0b0b0;
      --link-color: #e0e0e0;
      --link-hover-color: #4d9fff;
    }
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  
  .team-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .team-member {
    max-width: 300px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px var(--card-shadow);
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
  }
  
  .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .team-member h3 {
    margin: 10px 0 5px;
    color: var(--text-color);
  }
  
  .role {
    font-weight: bold;
    color: var(--role-color);
    margin-bottom: 10px;
  }
  
  .bio {
    font-size: 0.9em;
    color: var(--bio-color);
    margin-bottom: 15px;
  }
  
  .social-links a {
    color: var(--link-color);
    margin: 0 5px;
    font-size: 1.2em;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--link-hover-color);
  }
  :root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #f8f8f8;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --role-color: #0066cc;
    --bio-color: #666666;
    --link-color: #333333;
    --link-hover-color: #0066cc;
  }
  
  body.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --card-bg: #2c2c2c;
    --card-shadow: rgba(0, 0, 0, 0.3);
    --role-color: #4d9fff;
    --bio-color: #b0b0b0;
    --link-color: #e0e0e0;
    --link-hover-color: #4d9fff;
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* ... rest of the CSS remains the same ... */

  .exam-section {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.exam-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.exam-header h2 {
    font-size: 2rem;
    margin: 0;
    color: #3498db;
}

.exam-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.imp-links {
    background-color: #e8f4fd;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.important-links h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.important-links ul {
    list-style-type: none;
    padding: 0;
}

.important-links li {
    margin-bottom: 0.5rem;
}

.important-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.important-links a:hover {
    color: #3498db;
}
.vit-details, .study-resources, .practice-tests {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vit-details h2, .study-resources h2, .practice-tests h2 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.vit-details h3, .study-resources h3, .practice-tests h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.vit-details ul, .study-resources ul, .practice-tests ul {
    list-style-type: none;
    padding-left: 1rem;
}

.vit-details li, .study-resources li, .practice-tests li {
    margin-bottom: 0.5rem;
    position: relative;
}

.vit-details li::before, .study-resources li::before, .practice-tests li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: -1rem;
}

.vit-details a, .study-resources a, .practice-tests a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vit-details a:hover, .study-resources a:hover, .practice-tests a:hover {
    color: #2980b9;
}
@media screen and (max-width: 768px) {
    .exam-details {
        grid-template-columns: 1fr;
    }

    .vit-details, .study-resources, .practice-tests {
        padding: 1.5rem;
    }

    .vit-details h2, .study-resources h2, .practice-tests h2 {
        font-size: 1.5rem;
    }

    .vit-details h3, .study-resources h3, .practice-tests h3 {
        font-size: 1.2rem;
    }
}
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --header-bg: #f8f9fa;
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --highlight-color: #3498db;
    --secondary-color: #2c3e50;
    --link-color: #3498db;
    --link-hover-color: #2980b9;
  }
  
  body.dark-mode {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --header-bg: #1e1e1e;
    --card-bg: #2a2a2a;
    --card-shadow: rgba(255, 255, 255, 0.1);
    --highlight-color: #bb86fc;
    --secondary-color: #a0a0a0;
    --link-color: #bb86fc;
    --link-hover-color: #9a67ea;
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
  }
  
  .exam-section, .imp-links, .vit-details, .study-resources, .practice-tests {
    background-color: var(--header-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px var(--card-shadow);
  }
  
  .exam-header h2, .imp-links h3, .vit-details h2, .study-resources h2, .practice-tests h2 {
    color: var(--highlight-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .detail-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px var(--card-shadow);
    transition: transform 0.3s ease;
  }
  
  .detail-card:hover {
    transform: translateY(-5px);
  }
  
  .detail-card h4 {
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  
  .important-links a, .vit-details a, .study-resources a, .practice-tests a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .important-links a:hover, .vit-details a:hover, .study-resources a:hover, .practice-tests a:hover {
    color: var(--link-hover-color);
  }
  
  .vit-details h3, .study-resources h3, .practice-tests h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  
  .vit-details li::before, .study-resources li::before, .practice-tests li::before {
    content: "•";
    color: var(--highlight-color);
    position: absolute;
    left: -1rem;
  }
  
  @media screen and (max-width: 768px) {
    .exam-details {
      grid-template-columns: 1fr;
    }
  
    .vit-details, .study-resources, .practice-tests {
      padding: 1.5rem;
    }
  
    .vit-details h2, .study-resources h2, .practice-tests h2 {
      font-size: 1.5rem;
    }
  
    .vit-details h3, .study-resources h3, .practice-tests h3 {
      font-size: 1.2rem;
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .exam-section, .imp-links, .vit-details, .study-resources, .practice-tests {
    animation: fadeIn 0.5s ease-out forwards;
  }
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  .bordered-image {
    border: 2px solid #e6f2ff;
    border-radius: 4px;
}

.top-colleges {
    background-color: var(--header-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 10px var(--card-shadow);
    animation: fadeIn 0.5s ease-out forwards;
}

.top-colleges h2 {
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.college {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px var(--card-shadow);
    transition: transform 0.3s ease;
}

.college:hover {
    transform: translateY(-5px);
}

.college h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.college ul {
    list-style-type: none;
    padding-left: 1rem;
}

.college li {
    margin-bottom: 0.5rem;
    position: relative;
}

.college li::before {
    content: "•";
    color: var(--highlight-color);
    position: absolute;
    left: -1rem;
}



table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--secondary-color);
}

th {
    background-color: var(--highlight-color);
    color: var(--bg-color);
}

tr:nth-child(even) {
    background-color: var(--card-bg);
}

body.dark-mode {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --header-bg: #1e1e1e;
    --card-bg: #2a2a2a;
    --card-shadow: rgba(255, 255, 255, 0.1);
    --highlight-color: #bb86fc;
    --secondary-color: #a0a0a0;
    --link-color: #bb86fc;
    --link-hover-color: #9a67ea;
}

.bordered-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .bordered-image {
        width: 90%; /* Adjust this value as needed */
    }
}

.participating-colleges {
    width: 100%;
  }
  
  .college-images {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bordered-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  @media screen and (min-width: 768px) {
    .college-images {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .bordered-image {
      width: 48%; /* Adjust this value as needed */
      margin-bottom: 0;
    }
  }

  .manipal-campuses {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
  }
  
  .manipal-campuses h2 {
    text-align: center;
    margin-bottom: 40px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }
  
  .campus {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .campus h3 {
    color: #003366;
    margin-bottom: 15px;
  }
  
  .campus p {
    margin-bottom: 10px;
  }
  
  .campus ul {
    padding-left: 20px;
  }
  
  .campus li {
    margin-bottom: 5px;
  }

  .dark-mode .manipal-campuses {
    background-color: #2a2a2a;
    color: #ffffff;
  }
  
  .dark-mode .campus {
    background-color: #1a1a1a;
    box-shadow: 0 2px 4px rgba(255,255,255,0.1);
  }
  
  .dark-mode .manipal-campuses h2,
  .dark-mode .campus h3 {
    color: #bb86fc;
  }

  .test-series-container {
    text-align: center;
    padding: 20px;
}

.test-series-container h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #333;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.test-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.august-batch {
    background-color: #ffebee;
    color: #d32f2f;
}

.just-launched {
    background-color: #e8f5e9;
    color: #388e3c;
}

.coming-soon {
    background-color: #e3f2fd;
    color: #1976d2;
}

/* Light mode styles (default) */
.test-series-container {
    text-align: center;
    padding: 20px;
  }
  
  .test-series-container h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
    color: #333;
  }
  
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .test-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  }
  
  .test-card:hover {
    transform: translateY(-5px);
  }
  
  .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .test-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
  }
  
  .status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
  }
  
  .august-batch {
    background-color: #ffebee;
    color: #d32f2f;
  }
  
  .just-launched {
    background-color: #e8f5e9;
    color: #388e3c;
  }
  
  .coming-soon {
    background-color: #e3f2fd;
    color: #1976d2;
  }
  
  /* Dark mode styles */
  .dark-mode .test-series-container h1 {
    color: #e0e0e0;
  }
  
  .dark-mode .test-card {
    background-color: #2a2a2a;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  }
  
  .dark-mode .test-card h3 {
    color: #e0e0e0;
  }
  
  /* You may want to adjust the status colors for better visibility in dark mode */
  .dark-mode .august-batch {
    background-color: rgba(255, 87, 34, 0.2);
    color: #ff7043;
  }
  
  .dark-mode .just-launched {
    background-color: rgba(76, 175, 80, 0.2);
    color: #81c784;
  }
  
  .dark-mode .coming-soon {
    background-color: rgba(33, 150, 243, 0.2);
    color: #64b5f6;
  }

  .test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media only screen and (max-width: 768px) {
    .test-grid {
        grid-template-columns: 1fr; /* Make cards stack on smaller screens */
    }

    .test-card {
        margin: 0 auto;
        width: 90%; /* Adjust the width of cards for smaller screens */
    }

    .test-category h2 {
        text-align: center;
        font-size: 1.5rem; /* Adjust heading size */
    }

    .test-list {
        padding: 0;
        list-style: none;
    }

    .test-item {
        margin-bottom: 20px;
    }
}
.go-to-section {
    text-align: center;
    margin: 50px 0;
}

.go-to-link {
    display: inline-block;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.go-to-link:hover {
    background-color: #0056b3;
}