/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 80px; /* Ensures content does not overlap with the fixed header */
}

/* Header styling */
header {
    background-color: #002C73; /* deep blue from your logo */
    color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures header stays above other content */
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

header.scrolled {
    background-color: #002C73; /* Match your logo’s dark blue */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px; /* Adjust size as needed */
    width: auto;
    margin-right: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff; /* Change to match your design */
}

.nav-links {
    display: flex;
    justify-content: flex-end; /* Ensures the links align to the right */
    align-items: center;
    list-style-type: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 25px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

/* Nav Links for Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #fff;
        width: 100%;
        padding: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Tenant Score Section */
.tenant-score-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #e3f2fd;
    min-height: 100vh;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.tenant-score-section h1 {
    font-size: 2.8rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.tenant-score-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Tenant Score Form */
.tenant-score-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}

.tenant-score-form .form-group {
    display: flex;
    flex-direction: column;
}

.tenant-score-form label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #1976d2;
}

.tenant-score-form input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.tenant-score-form button {
    padding: 15px 30px;
    background-color: #1976d2;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tenant-score-form button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Tenant Score Display */
.score-display {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#scoreValue {
    font-size: 2.5rem;
    color: #1976d2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tenant-score-section h1 {
        font-size: 2.2rem;
    }

    .tenant-score-form button {
        padding: 12px 20px;
        font-size: 1.1rem;
    }

    .score-circle {
        width: 120px;
        height: 120px;
    }

    #scoreValue {
        font-size: 2rem;
    }
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #ffd700; /* Light blue */
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #002C73; /* Blue text */
}

.cta-button {
    background-color: #1976d2;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Fix for Early Adopter Badge */
.hero .cta-button {
    display: inline-block;
    background-color: #1976d2;
    padding: 12px 25px;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.hero .cta-button:hover {
    background-color: #0d47a1;
}

/* Pop-Up Styling */
.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    position: relative; /* Add position relative to place the close button properly */
}

.popup-content h3 {
    color: #1976d2;
    margin-bottom: 20px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content input,
.popup-content button {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Close Button Styling */
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.close-popup:hover {
    background-color: #f1f1f1;
    color: #ff0000;
}

/* Redesigned Features Section */
#features {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

#features h3 {
    font-size: 2.5rem;
    color: #002C73;
    margin-bottom: 60px;
}

.index-features-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
}

.reverse {
    flex-direction: row-reverse;
}

.feature-mockup {
    width: 50%;
    max-width: 480px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.feature-text {
    flex: 1;
    padding: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .row, .reverse {
        flex-direction: column;
        align-items: center;
    }

    .feature-mockup {
        width: 100%;
    }

    .feature-text {
        text-align: center;
        padding: 10px;
    }
}

.feature-block {
    max-width: 1000px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: scale(1.01);
}

.feature-mockup {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text {
    padding: 30px;
    text-align: left;
}

.feature-text h4 {
    font-size: 1.8rem;
    color: #1976d2;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-text {
        padding: 20px;
        text-align: center;
    }

    .feature-text h4 {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 1rem;
    }
}

/* Partner Section Updated Styles */
#partners {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

#partners h3 {
    font-size: 2.3rem;
    color: #002C73;
    margin-bottom: 40px;
}

.partners-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: auto; /* prevent snap while JS scrolls */
    padding: 10px;
    margin: 0 auto;
    max-width: 1100px;
    white-space: nowrap;
    scrollbar-width: none;
}

.partners-scroll-container::-webkit-scrollbar {
    display: none;
}

.partner-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 40px;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-weight: bold;
    color: #1976d2;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05);
}


/* Community Section Styling Fix */
#community {
    background-color: #f9f9f9;
    padding: 70px 20px;
    text-align: center;
}

#community h3 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 50px;
}

.metrics {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.metric {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 250px;
}

.metric:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.metric h4 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 10px;
}

.metric p {
    font-size: 1.2rem;
    color: #333;
}

/* Section Background Utilities */
.section-light {
    background-color: #ffffff;
}

.section-white {
    background-color: #f9f9f9;
}

/* Animation (Optional but adds subtle polish) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Early Adopter Badge Styling */
.early-adopter-badge {
    background-color: #002C73; /* Match brand dark blue */
    color: #ffffff;
    padding: 50px 20px;
    margin-top: 50px;
    text-align: center;
}
.early-adopter-badge {
    background: linear-gradient(145deg, #002C73, #003b99);
}
.early-adopter-badge p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.early-adopter-badge .badge {
    display: inline-block;
}

.early-adopter-badge .cta-button {
    background-color: #1976d2;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.early-adopter-badge .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .metrics {
        flex-direction: column;
        align-items: center;
    }

    .metric {
        width: 90%;
        margin-bottom: 20px;
    }

    .early-adopter-badge {
        padding: 40px 20px;
    }

    .early-adopter-badge p {
        font-size: 1.5rem;
    }
}






/* Contact Us Styling */
#contact {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

#contact p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #1976d2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #1565c0;
}

/* Map Styling */
.map-container {
    flex: 1;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        margin-top: 30px;
        width: 100%;
        height: 300px;
    }
}







/* Pricing Section Enhancements */
#pricing {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

#pricing h2 {
    font-size: 2.8rem;
    color: #1976d2;
    margin-bottom: 20px;
}

#pricing p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Pricing Tier Cards - Updated with Colors */
.pricing-tiers {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-tier {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Individual Tier Colors */
.pricing-tier.starter {
    background-color: #e3f2fd; /* Light Blue */
    border-top: 4px solid #1976d2; /* Blue top border */
}

.pricing-tier.pro {
    background-color: #fffde7; /* Light Yellow */
    border-top: 4px solid #fbc02d; /* Yellow top border */
}

.pricing-tier.professional {
    background-color: #fff3e0; /* Light Orange */
    border-top: 4px solid #ff9800; /* Orange top border */
}

.pricing-tier .price {
    transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.pricing-tier:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-tier h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.pricing-tier p.price {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* List of Features */
.pricing-tier ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-tier ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #555;
}

/* CTA Button */
.pricing-tier .cta-button {
    background-color: #1976d2;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-tier .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .pricing-tiers {
        flex-direction: column;
        align-items: center;
    }

    .pricing-tier {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

/* Additional Info Section */
.additional-info {
    margin-top: 60px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.additional-info h3 {
    color: #1976d2;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.additional-info ul {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.additional-info ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.additional-info ul li::before {
    content: "✔";
    color: #1976d2;
    margin-right: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-tiers .pricing-tier {
    animation: fadeIn 0.5s ease-in-out;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #1976d2;
}

.toggle-label {
    font-size: 1.1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #1976d2;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.custom-pricing-section {
    margin: 60px auto;
    text-align: center;
    background: #eef4ff;
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.custom-pricing-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

.custom-pricing-section .highlight-link {
    color: #1976d2;
    text-decoration: underline;
    font-weight: bold;
}

.calculator-box {
    background: #ffffff;
    border: 2px solid #1976d2;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.calculator-box input {
    padding: 10px;
    font-size: 1.1rem;
    width: 60%;
    margin: 10px auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.calculator-box button {
    background: #1976d2;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calculator-box button:hover {
    background: #0d47a1;
}

#calcResult {
    font-size: 1.2rem;
    color: #333;
    margin-top: 15px;
}

.hidden-result {
    display: none;
}





/* Sign-Up Page Styling */
.signup-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    margin-top: 40px;
}

.signup-container h2 {
    text-align: center;
    color: #1976d2;
    margin-bottom: 20px;
}

.signup-container form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.form-row input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-row input[type="text"], input[type="email"], input[type="tel"], select {
    flex: 1;
}

textarea {
    height: 100px;
}

button {
    width: 100%;
    background-color: #1976d2;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}

button:hover {
    background-color: #1565c0;
}



/* Footer Section Styling */
footer {
    background-color: #002C73;
    color: #ffffff;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer-column p, .footer-column ul {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ffd700;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-column a[href^="mailto:"],
.footer-column a[href^="tel:"] {
    color: #ffd700; /* Yellow for visibility */
    text-decoration: none;
}

.footer-column a[href^="mailto:"]:hover,
.footer-column a[href^="tel:"]:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-brand img {
    height: 18px; /* Adjust to better match the text */
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 2px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    max-width: 70%;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #0d47a1;
    color: white;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #0a386e;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-referral-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #ffd700;
    color: #1976d2;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-referral-button:hover {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.social-icons {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons li a img {
    width: 30px;
    height: 30px;
}

.social-icons li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}

.social-icons li a span {
    font-size: 0.9rem;
}

/* Footer responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        max-width: 100%;
        margin-bottom: 10px;
    }
}



/* Referral Program Section Styling */
.referral-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.referral-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.referral-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.referral-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.how-it-works, .rewards-structure, .terms-conditions {
    margin-top: 40px;
    text-align: left;
}

.how-it-works h3, .rewards-structure h3, .terms-conditions h3 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.how-it-works ul, .rewards-structure ul {
    list-style: none;
    padding-left: 0;
}

.how-it-works ul li, .rewards-structure ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

.terms-conditions p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .referral-section h2 {
        font-size: 2rem;
    }

    .how-it-works h3, .rewards-structure h3, .terms-conditions h3 {
        font-size: 1.8rem;
    }

    .how-it-works ul li, .rewards-structure ul li {
        font-size: 1rem;
    }
}







/* Blog Section Styling */
#blog {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#blog h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 40px;
}

/* Blog Container Fixes */
.blog-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Blog Cards */
.blog-card {
    background-color: white;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.blog-card h3 {
    font-size: 1.8rem;
    margin: 15px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #555;
    margin: 0 15px;
}

.blog-card p {
    font-size: 1rem;
    margin: 0 15px 15px;
}

/* Fixing Read More Button */
.read-more {
    margin: 15px;
    padding: 10px 20px;
    background-color: #1976d2;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    align-self: flex-end;
}

.read-more:hover {
    background-color: #0d47a1;
}

@media (min-width: 1024px) {
    .read-more {
        align-self: flex-end;
    }
}

/* Trending Topics Enhancements */
#trending {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

#trending h3 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 30px;
}

.trending-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trending-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.trending-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.trending-item a {
    text-decoration: none;
    color: #1976d2;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-top: 10px;
}

.trending-metric {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
    display: block;
}

/* Search and Filter Section Styling */
.search-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

/* Styling for Search Input */
.search-container input {
    padding: 12px 20px;
    border-radius: 50px; /* Rounded shape like a pill */
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 300px;
}

/* Styling for Dropdown */
.search-container select {
    padding: 12px 20px;
    border-radius: 50px; /* Rounded shape to match input field */
    border: 1px solid #ccc;
    font-size: 1rem;
    min-width: 180px;
    background-color: #fff;
    appearance: none; /* Remove default styling for consistency */
    cursor: pointer;
}

/* Styling for Search Button */
.search-container button {
    padding: 12px 30px; /* Slightly larger padding */
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 50px; /* Rounded shape like a pill */
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button Hover Effect */
.search-container button:hover {
    background-color: #0d47a1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-container {
        flex-direction: column; /* Stack the elements vertically */
        align-items: center;
        gap: 15px; /* More spacing between elements on small screens */
    }

    .search-container input, 
    .search-container select, 
    .search-container button {
        width: 100%; /* Full-width for each element on smaller screens */
    }
}


/* Modal for Blog Post */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.blog-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto; /* Allows scrolling for long content */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure images inside modal are responsive */
.blog-modal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-modal h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.blog-modal p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Apply blur only to the content when modal is open */
body.modal-open .content {
    filter: blur(5px);
}

/* Article Page Styling */
.article-page {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.article-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}




/* About Us Section */
.about {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Vision Section */
.about h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.team-member {
    max-width: 250px;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.5rem;
    color: #1976d2;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.partner-logos img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

.partner-logos p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 90%;
        margin-bottom: 20px;
    }

    .partner-logos img {
        width: 100px;
    }

    .about p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}






/* Features Page Styling */
.features-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 40px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
    align-items: stretch;
}

.feature {
    background-color: white;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.8rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.feature p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.features-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-container .cta-button {
    background-color: #1976d2;
    color: white;
    padding: 12px 25px; /* Regular button padding */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-container .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Responsive Features Section */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
        margin-bottom: 20px;
    }
}




/* Roadmap Hero Section */
.roadmap-hero {
    background-color: #ffd700; /* Yellow background */
    padding: 80px 20px;
    text-align: center;
}

.roadmap-title {
    font-size: 2.8rem;
    color: #002C73;
    margin-bottom: 20px;
}

.roadmap-intro {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.timeline-title {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 40px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.milestone {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease;
    text-align: center;
}

.milestone h4 {
    font-size: 1.8rem;
    color: #1976d2;
    margin-bottom: 10px;
}

.milestone p {
    font-size: 1.2rem;
    color: #333;
}

.milestone:hover {
    transform: scale(1.05);
}

/* Completed, In-progress, and Upcoming Milestones */
.milestone.completed {
    border: 2px solid #4caf50; /* Green for completed */
}

.milestone.in-progress {
    border: 2px solid #ff9800; /* Orange for in-progress */
}

.milestone.upcoming {
    border: 2px solid #2196f3; /* Blue for upcoming */
}

/* Future Features Section */
.future-features {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.future-features h3 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 40px;
}

.features-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.features-list li {
    font-size: 1.3rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Responsive Styles for Roadmap Page */
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .milestone {
        max-width: 90%;
    }

    .roadmap-title {
        font-size: 2rem;
    }

    .timeline-title,
    .future-features h3 {
        font-size: 2rem;
    }
    
    .roadmap-intro {
        font-size: 1.1rem;
    }

    .features-list li {
        font-size: 1.2rem;
    }
}




/* Community Involvement Section */
.community-involvement {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.community-title {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.community-intro {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.community-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.community-form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.community-form input,
.community-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.community-form .cta-button {
    background-color: #1976d2;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.community-form .cta-button: hover{ 
	 background-color: #0d47a1;
    transform: scale(1.05);
}


/* Release Date Styling */
.release-date {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}






/* Audiences Page - Dynamic Content Styling */

/* General Audience Section */
.audience-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.audience-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.audience-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.audience-section ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.audience-section ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.audience-section .cta-button {
    background-color: #1976d2;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.audience-section .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Responsive Audiences Section */
@media (max-width: 768px) {
    .audience-section h2 {
        font-size: 2rem;
    }

    .audience-section p {
        font-size: 1rem;
    }

    .audience-section ul li {
        font-size: 1rem;
    }
}



/* Grid Layout for Audience Sections */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.audience-section {
    flex: 1 1 300px;
    max-width: 360px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.audience-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.audience-icon {
    width: 60px;
    margin-bottom: 20px;
}

.audience-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.audience-tagline {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

/* CTA Button Styling for New Section */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-container .cta-button {
    background-color: #1976d2;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-container .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Responsive CTA Container */
@media (max-width: 768px) {
    .cta-container {
        margin-top: 20px;
    }

    .cta-container .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}




/* Exit Pop-Up Styling */
.popup-exit {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-exit-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.popup-exit-content h3 {
    color: #1976d2;
    margin-bottom: 20px;
}

.popup-exit-content form {
    display: flex;
    flex-direction: column;
}

.popup-exit-content input,
.popup-exit-content button {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Close Button Styling */
.close-exit-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.close-exit-popup:hover {
    background-color: #f1f1f1;
    color: #ff0000;
}

/* CTA Button for Exit Pop-Up */
.cta-button-exit {
    background-color: #1976d2;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-exit:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}




/* Lead Generation Form Styling */
.lead-gen-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.lead-gen-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.lead-gen-section p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lead-gen-section form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.lead-gen-section input,
.lead-gen-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cta-button-lead {
    background-color: #1976d2;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button-lead:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}





/* Loading spinner animation */
#loading-indicator {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* darker for visibility */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-indicator .loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #1976d2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/* Terms of Service Page Styling */
.terms-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .terms-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #333;
  }
  
  .terms-container h3 {
    font-size: 1.8rem;
    color: #1976d2;
    margin-top: 30px;
  }
  
  .terms-container p {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .terms-container {
      padding: 20px;
    }
  
    .terms-container h3 {
      font-size: 1.5rem;
    }
  
    .terms-container p {
      font-size: 1rem;
    }
  }




  /* Careers Page Styling */
.careers-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.careers-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.careers-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.job-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.job-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 300px;
    flex: 1;
    text-align: left;
}

.job-card h3 {
    color: #1976d2;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.job-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.job-card .cta-button {
    display: inline-block;
    background-color: #1976d2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.job-card .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

.job-card p:last-of-type {
    margin-bottom: 25px;
}

.culture {
    margin-top: 40px;
}

.culture h3 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.culture p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .job-categories {
        flex-direction: column;
        align-items: center;
    }

    .job-card {
        width: 90%;
    }
}

.job-filter {
    margin-bottom: 40px;
    text-align: center;
}

.job-filter select {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.application-form {
    background: #fff;
    padding: 40px;
    margin: 60px auto;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.application-form h3 {
    font-size: 1.8rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.application-form p {
    margin-bottom: 25px;
    color: #555;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.life-at-lumate {
    padding: 60px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.life-at-lumate h3 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 10px;
}

.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gallery-img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 80px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}



/* FAQ Page Styling */
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.faq-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.faq-container {
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-question {
    background: none;
    border: none;
    font-size: 1.3rem;
    font-weight: bold;
    color: #1976d2;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0d47a1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    padding: 0 0 0 15px;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 0 10px 15px;
}


/* Have More Questions Section Styling */
.more-questions-section {
    padding: 60px 20px;
    background-color: #1976d2;
    color: #fff;
    text-align: center;
}

.more-questions-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.more-questions-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.more-questions-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #e3f2fd;
}

.more-questions-section .common-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.more-questions-section .common-topics li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-questions-section .cta-button {
    background-color: #fff;
    color: #1976d2;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.more-questions-section .cta-button:hover {
    background-color: #0d47a1;
    color: #fff;
}



/* Support Page Styling */
.support-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.support-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.support-section h2 {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.support-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.support-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 300px;
    flex: 1;
    text-align: left;
}

.support-card h3 {
    color: #1976d2;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.support-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.support-card .cta-button {
    display: inline-block;
    background-color: #1976d2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.support-card .cta-button:hover {
    background-color: #0d47a1;
    transform: scale(1.05);
}

/* Support Contact Form */
.contact-support {
    margin-top: 50px;
}

.contact-support h3 {
    font-size: 2rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.contact-support p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.support-form input, 
.support-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.support-form textarea {
    height: 150px;
}

.support-form button {
    width: 100%;
    background-color: #1976d2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 10px;
}

.support-form button:hover {
    background-color: #0d47a1;
}



/* Support Success Page Styling */
.success-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.success-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.success-section h2 {
    font-size: 2.8rem;
    color: #1976d2;
    margin-bottom: 20px;
}

.success-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
}

.success-section .cta-button {
    margin-top: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}



/* Login / Auth Pages */
.auth-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .auth-container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .auth-container h2 {
    color: #1976d2;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .auth-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  .auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .auth-form .cta-button {
    width: 100%;
    background-color: #1976d2;
    color: white;
    padding: 12px;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .auth-form .cta-button:hover {
    background-color: #0d47a1;
  }
  
  .auth-footer {
    margin-top: 20px;
    font-size: 0.95rem;
  }




  /* MVP Signup Role Styling */
.signup-mvp-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.signup-mvp-section h2 {
    font-size: 2.2rem;
    color: #1976d2;
    margin-bottom: 10px;
}

.signup-mvp-section .subtext {
    color: #555;
    margin-bottom: 30px;
}

.signup-role-form {
    max-width: 400px;
    margin: 0 auto;
}

.signup-role-form select,
.signup-role-form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.signup-role-form button {
    background-color: #1976d2;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.signup-role-form button:hover {
    background-color: #0d47a1;
}
