/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom: 2px solid #ddd;
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}

.logo-img:hover {
    transform: scale(1.1);
}

/* Header Content */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header Title */
.header-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

/* Body Content */
.main-content {
    width: 100%;
    margin-top: 30px;
    padding: 0 15px;
}

/* Banner Section */
.banner-wrap {
    position: relative;
    height: 220px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Text and Content Sections */
.intro-text, .community-section, .tools-section {
    margin-top: 50px;
    text-align: center;
}

.wsite-content-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.intro-text p, .community-section p, .tools-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Community Section */
.community-section {
    background-color: #f1d36b; /* Light blue-grey background */
    padding: 40px 20px; /* Adds padding to the section */
    border-radius: 8px;
    margin-bottom: 50px;
}

.wsite-multicol-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centering the cards */
    gap: 30px;
}

.wsite-multicol-col {
    flex: 1;
    min-width: 300px; /* Minimum width to ensure proper layout */
    padding: 20px;
    background-color: transparent; /* Transparent background */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    text-align: center; /* Center-align the text */
}

.wsite-multicol-col h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.wsite-multicol-col p {
    font-size: 1.1rem;
    color: #444;
}

/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
    .wsite-multicol-table {
        flex-direction: column;
        align-items: center;
    }

    .wsite-multicol-col {
        width: 90%;
        margin-bottom: 20px;
    }
}
/* Tools Section */
.tools-section {
    background-color: #f1d36b; /* Soft light blue for the tools section */
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tools-section .tool-item {
    background-color: #ffffff; /* White background for tool items */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.tools-section .tool-item:hover {
    transform: translateY(-10px);
}

.tools-section .tool-item h3 {
    font-size: 1.4rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.tools-section .tool-item p {
    font-size: 1.1rem;
    color: #444;
}

/* Qoute */

/* Mission Section Quote Styling */
blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    background-color: #f9f9f9; /* Soft background */
    padding: 40px 30px;
    border-left: 10px solid #007bff; /* Accent color for the left border */
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

blockquote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: center; /* Center-align the text inside */
}

/* Hover Effect */
blockquote:hover {
    background-color: #f0f8ff; /* Light blue background on hover */
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .wsite-multicol-col {
        min-width: 48%;
    }
}

@media (max-width: 768px) {
    .wsite-multicol-table {
        flex-direction: column;
        align-items: center;
    }

    .wsite-multicol-col {
        width: 100%;
        margin-bottom: 20px;
    }

    .intro-text p,
    .community-section p,
    .tools-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wsite-content-title {
        font-size: 1.5rem;
    }

    .banner-wrap {
        height: 180px;
    }

    .banner img {
        object-position: center;
    }
}

/* About Section */
.about-section {
    background-color: #f4f8fb;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-values {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 40px;
}

.value {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.value h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #007bff;
}

.value p {
    font-size: 1rem;
    color: #555;
}

.about-goals {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
    margin-bottom: 30px;
}

.about-goals li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-footer {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-top: 30px;
}

.value:hover {
    transform: translateY(-10px); /* Slight hover effect */
}

@media (max-width: 768px) {
    .about-values {
        flex-direction: column;
        align-items: center;
    }

    .value {
        width: 80%;
        margin-bottom: 30px;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    text-align: center;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    color: #555;
}

.contact-info ul li {
    margin: 15px 0;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info .social-links {
    margin-top: 10px;
}

.contact-info .social-icon {
    margin: 0 15px;
    color: #333;
    font-size: 1.6rem;
}

.contact-info .social-icon:hover {
    color: #007bff;
}

.contact-form {
    margin-top: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-form button {
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}

/* Download the app */

.get-app-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
  }

  .section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .download-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .download-button:hover {
    background-color: #005bb5;
  }

  .store-icon {
    width: 40px;
    margin-right: 10px;
  }

  .download-button span {
    font-weight: 600;
  }

  /* App Store */
  .download-button.app-store {
    background-color: #1d8cd1;
  }

  .download-button.app-store:hover {
    background-color: #15608d;
  }

  /* Google Play */
  .download-button.google-play {
    background-color: #34a853;
  }

  .download-button.google-play:hover {
    background-color: #2c7a3f;
  }

/* business */

.partner-with-us-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
  }

  .section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .contact-details {
    font-size: 1.1em;
    color: #444;
  }

  .contact-email a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 600;
  }

  .contact-email a:hover {
    text-decoration: underline;
  }

/* Team */


.team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    background-color: #f9f9f9;
  }

  .team-member {
    text-align: center;
    width: 350px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .team-member:hover {
    transform: translateY(-10px);
  }

  .team-member-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .team-member h3 {
    font-size: 1.6em;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .role {
    font-size: 1.1em;
    color: #777;
    margin-bottom: 10px;
  }

  .bio {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
  }

  .founder {
    background-color: #e3f2fd; /* Unique background for the founder */
   
  }

  .founder h3 {
    color: #42a5f5;
  }

/* Guide lines */

.community-guidelines {
    background-color: #f9f9f9;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.community-guidelines section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.effective-date {
    font-size: 1.1rem;
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

.guidelines-section {
    margin-bottom: 30px;
}

.guidelines-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.guidelines-section ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1rem;
    color: #555;
}

.guidelines-section ul li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.guidelines-section ul li strong {
    color: #007bff;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.guidelines-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Privacy policy */


/* Footer Styling */
.footer-dark {
    padding: 50px 0;
    color: #f0f9ff;
    background-color: #282d32;
}

.footer-dark h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
}

.footer-dark ul {
    padding: 0;
    list-style: none;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-dark ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
}

.footer-dark ul a:hover {
    opacity: 0.8;
}

.footer-dark .item.text {
    margin-bottom: 36px;
}

.footer-dark .item.text p {
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-dark .item.social {
    text-align: center;
}

.footer-dark .item.social > a {
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    color: #fff;
    opacity: 0.75;
}

.footer-dark .item.social > a:hover {
    opacity: 0.9;
}

.footer-dark .copyright {
    text-align: center;
    padding-top: 24px;
    opacity: 0.3;
    font-size: 13px;
    margin-bottom: 0;
}
