body, h1, p, a, button {
    margin: 0;
    padding: 0;
    font-family: Calibri, sans-serif;
}
 
body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
/*index tts section*/
.tts-section {
    width: 80%;
    margin: 40px auto;
    text-align: center;
}

.tts-header {
    font-size: 24px;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 10px;
}

.tts-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.tts-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.tts-box {
    width: 500px;
    height: 250px;
    background-color: white;
    border: 2px solid #0056b3;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    resize: none;
}

.listen-btn {
    width: 150px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.listen-btn:hover {
    background-color: #004099;
}

.voice-options {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 15px;
}

.voice-circle {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.voice-circle span {
    font-size: 12px;
    text-align: center;
    display: block;
    margin-top: 5px;
}

.voice-circle:hover {
    background-color: #004099;
}

/* Navigation Bar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f1f1; /* or any color you like */
    padding: 10px 20px;
}

.navbar .logo a {
    font-size: 1.8rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.navbar .nav-links {
    display: flex;
    gap: 15px;
}

.navbar .nav-links a {
    font-size: 1rem;
    text-decoration: none;
    color: #333;
}

.navbar .logo img {
    height: 40px; /* Adjust image size as needed */
    width: auto;
}
/* General Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3c5ecd;
    padding: 10px 20px;
    color: white;
    position: relative;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar-right {
    display: flex;
    gap: 15px;
    list-style: none;
}

.navbar-right li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Burger icon */
.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar-right {
        display: none;
        flex-direction: column;
        background-color: #3c5ecd;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        padding: 10px 0;
    }

    .navbar-right.show {
        display: flex;
    }

    .navbar-right li {
        padding: 10px;
        text-align: right;
    }

    .burger {
        display: block;
    }
}


/* Chatbox */
.chatbox {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
 
.chatbox-button {
    background-color: #d85d9b;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px; 
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.chatbox-content {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 15px;
}
 
.chatbox-button:focus + .chatbox-content,
.chatbox-content:hover {
    display: block;
}
 
.chatbox-content input {
    width: calc(100% - 10px);
    padding: 10px;
    margin-top: 10px;
}
 
/* Hero Section */
.hero {
    background-image: url('images/index/header.png');
    background-size: cover;
    color: black;
    height: 66vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
 
.hero-text h1 {
    font-size: 4em; 
    margin: 0;
}
 
.hero-text h2 {
    font-size: 2.5em;
    margin: 0;
}
 
 
.info-bar {
    display: flex;
    width: 100%;
    position: relative;
    top: 0; 
    margin-top: -1px;
}
 
.info-bar-item {
    flex: 1;
    padding: 15px 10px; 
    color: white;
    text-align: center;
    font-size: 1.2em;
}
 
.info-bar-item a {
    color: white;
    text-decoration: none;
}
 
.info-bar-item.blue1 {
    background-color: #1e3a8a;
}
 
.info-bar-item.white {
    background-color: rgb(211, 211, 103);
}
 
.info-bar-item.blue2 {
    background-color: #1e3a8a; 
}
 
.info-bar-item h2 {
    font-size: 2em; 
    color: white; 
}
 
.info-bar-item p {
    font-size: 1em; 
}

.neurodiversity-sec {
    background-color: rgb(219, 127, 142);
    color: rgb(255, 255, 255);
    text-align: center;
    max-width: 500px;
    padding-left: 10px;
    max-height: 700px;
}


/* Page Headers */
header {
    margin-top: 100px; 
    
}
 
header h1 {
    font-size: 5em;
    background-color: #1e3a8a; 
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px 0;
}
/* Mission Section */
.mission-section {
    background-color: #ffffff;
    padding: 40px 20px; 
    margin-top: 20px;
}
 
.mission-content {
    max-width: 800px;
    margin: 0 auto; 
    text-align: center;
}
 
.mission-content h2 {
    font-size: 3em;
    color: #1e3a8a;
    margin-bottom: 20px;
}
 
.mission-content p {
    font-size: 1.2em; 
    color: #333; 
    line-height: 1.6; 
}
 
.neurodiversity-section {
    background-color: #f4f4f4;
    padding: 50px 0;
}

.neurodiversity-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.neurodiversity-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 280px;
}

.neurodiversity-item h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.neurodiversity-item p {
    font-size: 1em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .neurodiversity-content {
        flex-direction: column;
    }
}

/* learning Section */
.learning-section {
    text-align: center;
    background-color: white;
    line-height: 1.6;
    margin-bottom: 10px;
    max-height: 900px;
    max-width: 600px;
}
 
/* Auth Section */
.get-involved-section {
    text-align: center;
    padding: 20px; 
}
 
.pink-text {
    background-color: pink;
    padding: 10px; 
    border-radius: 3px;
}
 
/* External Login Icons */
.external-login {
    margin: 20px 0; 
}
 
.login-icon {
    width: 50px; 
    margin: 0 10px;
}
 
/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px; 
    background-color: #f8f8f8;
}
 
.footer-section, .footer-newsletter {
    width: 40%;
}
 
.footer-newsletter {
    margin-left: 20px;
}
 
/* Read More Button */
.read-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
 
.read-more-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
 
.read-more-button:hover {
    background-color: #0056b3;
}
 
/* Articles Header */
.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
 
.articles-title {
    font-size: 2em;
    color: #1e3a8a;
}
 
/* Search Form */
.search-form {
    display: flex;
    align-items: center;
}
 
.search-form input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    margin-right: 10px;
}
 
.search-form button {
    padding: 8px 15px;
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}
 
.search-form button:hover {
    background-color: #1451b0;
}

/* Article Card Styling */
body {
    font-family: Calibri, sans-serif;
    margin: 0;
    padding: 0;
}
 
.page-header {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 20px 0;
}
 
.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
 
.articles-title {
    font-size: 2rem;
}
 
.search-form {
    display: flex;
}
 
.search-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
 
.search-form button {
    padding: 10px;
    margin-left: 5px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
}
 
.articles-container {
    padding: 20px;
}
 
.article-card {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 
.article-image {
    width: 40%;
    object-fit: cover;
}
 
.article-content {
    padding: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
 
.article-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #757575;
}
 
.article-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
 
.article-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}
 
.article-meta {
    font-size: 0.9rem;
    color: #757575;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.article-meta .likes {
    display: flex;
    align-items: center;
    gap: 5px;
}

.articles-header {
    font-size: 2.5rem;
    color: #003366;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e7e7e7;
}
 
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px; 
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e7e7e7;
}
 
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px; 
}
 
/*Footer for all pages*/
.footer-section {
    width: 40%;
}
 
.footer-section h4 {
    font-weight: bold;
    margin-bottom: 20px;
}
 
.footer-section ul {
    list-style: none;
    padding: 0;
}
 
.footer-section ul li {
    margin-bottom: 10px;
}
 
.footer-section ul li a {
    color: #333;
    text-decoration: none;
}
 
.footer-newsletter {
    width: 40%;
}
 
.footer-newsletter h4 {
    font-weight: bold;
    margin-bottom: 10px;
}
 
.footer-newsletter p {
    margin-bottom: 20px;
}
 
.footer-newsletter form {
    display: flex;
}
 
.footer-newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    flex: 1;
}
 
.footer-newsletter button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
 
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e7e7e7;
    margin-top: 40px;
}
 
.footer-bottom p {
    margin: 0;
    color: #777;
}
 
.social-icons a {
    color: #333;
    font-size: 20px;
    margin-left: 15px;
}
 
.social-icons a:hover {
    color: #007bff;
}
 
/* Quote Section Styling */
.quote-section {
    background-color:rgb(211, 211, 103);
    padding: 80px;
    text-align: center;
    color: black;
}
 
.quote-text {
    font-size: 35px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}
 
.quote-author {
    font-size: 23px;
    margin-top: 0;
}
 
/* Quote Section 2 Styling */
.quote2-section {
    background-color:rgb(211, 211, 103);
    padding: 40px;
    text-align: center;
    color: black;
}
 
.quote2-text {
    font-size: 35px;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}
 
.quote2-author {
    font-size: 23px;
    margin-top: 0;
}
/* Events Section */
.events-section {
    background-color: #f9f9f9; 
    height: 400px;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.section-title {
    font-size: 60px;
    color: #0a3d62;
    margin-bottom: 30px; 
}
 
.no-events {
    font-size: 24px; 
    color: #555;
    margin-top: 50px;
}
 
 
/* join us pg*/
#join-us-header {
    background-color: #3a5fcd; 
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
 
#join-us {
    background-color: transparent;
    color: black;
    padding: 50px;
}
 
/* Page Header */
.blue-header {
    background-color: #3a5fcd;
    color: white;
    padding: 20px;
    text-align: center;
}
 
/* Signup/Login Section */
.get-involved-section p {
    font-size: 1.2em;
    margin: 20px auto;
    text-align: center;
    max-width: 600px;
}
 
.auth-container {
    background-color: #ffccd5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin: 20px auto;
    max-width: 600px; 
    text-align: center;
}
 
/* Button Styling */
.auth-container .auth-button {
    background-color: #3a5fcd;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin: 10px 0;
    width: 100%; 
}
 
.auth-container .auth-button:hover {
    background-color: #2e4ca8;
}
 
/* Tab Styling */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
 
.tab {
    background-color: #3a5fcd;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}
 
.tab.active {
    background-color: #2e4ca8; 
}
 
.tab:hover {
    background-color: #2e4ca8;
}
 
 
/* Header for About Us Page */

 
.blue-header h1 {
    font-size: 4em;
    margin: 0;
}
 
.neurodiversity-info {
    background-color: #ffffff; 
    padding: 60px 20px; 
    text-align: center;
}
 
.neurodiversity-info h2 {
    font-size: 2.5em;
    color: #1e3a8a; 
    margin-bottom: 20px;
}
 
.neurodiversity-info p {
    font-size: 1.2em; 
    color: #333; 
    line-height: 1.6; 
}
/* Origins Section, about us page*/
.origins-section {
    display: flex;
    height: 30vh; 
}
 
.left-half {
    background-color:rgb(60, 94, 205);
    color: rgb(255, 255, 255);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em; 
    font-weight: bold;
    padding: 20px;
}
 
.right-half {
    background-color: wheat; 
    color: black;
    flex: 2; 
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.right-half p {
    font-size: 20px; 
    line-height: 1.6;
}
 
/*Mission and Vision Sections */
.our-mission, .our-vision {
    display: flex;
    height: 300px; 
    margin: 50px 0;
}
 
.our-mission .left-half, .our-vision .right-half {
    flex: 1;
    background-size: cover;
    background-position: center;
}
 
.our-mission .right-half, .our-vision .left-half {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    background-color: rgb(249, 236, 211); 
    color: black; 
}
.our-vision .left-half {
    flex: 1;
    padding: 40px;
    background-color: rgb(249, 236, 211);
    color: #000;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    
}
.our-vision .right-half {
    background-color:rgb(60, 94, 205);
    color: rgb(255, 255, 255);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em; 
    font-weight: bold;
    padding: 20px;
}

 
.our-mission h1, .our-vision h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
 
.our-mission p, .our-vision p {
    font-size: 18px;
    line-height: 1.6;
}
 
/* Specific Styles for Images */
.mission-image {
    background-image: url('mission.png'); 
}
 
.vision-image {
    background-image: url('vision.png');
}

.left_half
/* Core Values Section */
.core-values {
    padding: 50px 0;
    background-color: #fff;
}
 
.core-values h2 {
    font-size: 46px;
    margin-bottom: 10px;
    text-align: center;
    align-items: center;
    justify-items: center;
}
 
.core-values p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    text-align: center;
    align-items: center;
    justify-items: center;
}
 
.values-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
 
.value-item {
    flex: 1;
    max-width: 300px;
    margin: 0 20px;
    text-align: center;
}
 
.value-item img {
    width: 100%;
    height: auto;
    border-radius: 50%; 
    margin-bottom: 20px;
}
 
.value-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
 
.value-item p {
    font-size: 16px;
    color: #555;
}

/*learning section*/
/* General Reset */
body {
    margin: 0;
    font-family: Calibri, sans-serif;
    background-color: #f5f5f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3c5ecd;
    padding: 10px 30px;
    color: white;
    flex-wrap: wrap;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.navbar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.navbar-right a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px;
    transition: background-color 0.3s ease;
}

.navbar-right a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Header */
.page-header {
    background-color: #3c5ecd;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.page-header h1 {
    margin: 0;
}

/* Learning Page Layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3c5ecd;
    padding: 10px 20px;
    color: white;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.navbar a.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Header */
.page-header {
    background-color: #3c5ecd;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.page-header h1 {
    margin: 0;
    font-size: 36px;
}

/* Sidebar */
.sidebar {
    width: 25%;
    float: left;
    padding: 20px;
    background-color: #3c5ecd;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    text-decoration: none;
    color: white;
}

/* Main Content */
.container-learning {
    display: flex;
    align-items: center;
    text-align: center;
}

.content-learning {
    width: 75%;
    padding: 20px;
    height: 180px;
}

/* Autism Dictionary */
.autism-dictionary {
    margin-top: 60px;
    padding-left: 50px;
    /*background-color: #eef2ff;
    border-radius: 5px;*/
    font-size: 18px;
}

.autism-dictionary hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

.blue-strip {
    background-color: #3c5ecd;
    height: 20px;
    margin-top: 20px;
}

.dyslexia-title {
    font-size: 25px;
    color: #3c5ecd;
    margin-bottom:20px;
}
/* Causes of Dyslexia Section */
.causes-dyslexia {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.causes-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.causes-content h2 {
    font-size: 28px;
    color: #3c5ecd;
    margin-bottom: 20px;
}

.causes-image-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.causes-image {
    width: 250px;
    height: auto;
    border-radius: 5px;
}

.causes-image-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.causes-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}
.causes-image {
    width: 400px;  
    height: auto; 
    border-radius: 5px;
}
.signs-dyslexia {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.signs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signs-content h2 {
    font-size: 28px;
    color: #3c5ecd;
    margin-bottom: 20px;
}

.signs-image-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signs-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}
.signs-image {
    width: 220px; 
    height: auto;
}

.signs-image-teen {
    margin-left: -15px; 
}
.about-image {
    width: 250px; 
    height: auto;
}
/*Contact Us Page*/
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    padding: 40px;
    max-width: 900px;
    margin: auto;
    gap: 10px; 
}

.contact-left, .contact-right {
    width: 48%;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-left h2, .contact-right h2 {
    margin-bottom: 15px;
    color: #004080;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.contact-left input, 
.contact-left textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-left textarea {
    height: 100px;
    resize: none;
}

.send-btn {
    background: #004080;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

.send-btn:hover {
    background: #002f5f;
}

.contact-right p {
    margin: 5px 0;
    font-size: 16px;
    flex-grow: 1; 
}

/*signup success*/
body, h1, p, a, button {
    margin: 0;
    padding: 0;
    font-family: Calibri, sans-serif;
}

body {
    background-color: #f9f9f9;
}
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Jumbotron Styling */
.jumbotron {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.jumbotron2 {
    padding: 0 20px;
}
/* Button Styling */
.btn {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 15px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    text-align: center;
    font-weight: bold;
}

.btn:hover {
    background-color: #002244;
}

.btn:active {
    background-color: #001122;
}

/*member area*/
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.row {
    display: flex;
    width: 100%;
}

.col {
    width: 48%;
}

.graph-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-rating i {
    color: #ccc;
    cursor: pointer;
}

.star-rating i.checked {
    color: orange;
}

textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.goal-setting {
    margin-top: 20px;
}
/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 10px;
}

.navbar-center a:hover + .dropdown,
.dropdown:hover {
    display: block;
}

.dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #ddd;
}

/* User Profiles */
.user-profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 0 20px; 
}

.user-profile {
    width: calc(25% - 20px); 
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

.profile-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile p {
    margin: 5px 0;
}

.connect-container {
    padding: 0 20px; 
}

/*community forum*/
.profile-picture {
    text-align: center;
    margin-bottom: 20px;
}

.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.long-box {
    position: relative;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.long-box p {
    margin: 0;
}

.heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: red;
    clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 50% 75%, 20% 100%, 0% 35%);
}

.reply_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.tab input[type="radio"] {
    display: none;
}

.tab label {
    display: block;
    padding: 10px;
    background-color: #f4f4f4;
    cursor: pointer;
    text-align: center;
}

.tab-content {
    display: none;
    padding: 10px;
    background-color: #fff;
}

.tab input[type="radio"]:checked + label + .tab-content {
    display: block;
}

/*exercises*/
main {
    text-align: center;
}

.reader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

textarea {
    width: 80%;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    margin: 5px;
}

button:hover {
    background-color: #0056b3;
}

.highlight {
    background-color: yellow;
    padding: 2px;
}

.tools-heading {
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
    font-weight: bold;
}

.tools-description {
    text-align: center;
    font-size: 18px; 
    margin-bottom: 10px;
}

.tools-list {
    width: 60%;
    margin: 0 auto 20px auto;
    padding-left: 0;
    list-style-type: none;
    font-size: 18px;
}

.tools-list li {
    text-align: center;
    margin-bottom: 8px;
}

.tool-title {
    text-align: center;
    font-size: 32px; 
    font-weight: bold;
    margin-top: 30px;
}
/* colour overlap text*/
#colourTextInput {
    width: 80%;
    height: 200px;
    padding: 15px;
    font-size: 20px; 
    border: 1px solid #ccc;
    border-radius: 5px;
    line-height: 1.5; 
}
/* line reader tool text*/
#textInput {
    width: 80%;
    height: 200px;
    padding: 15px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    line-height: 1.5;
}