* {
    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;
}
