:root {
    --primary: #1a4331;
    --muted: #9ca3af;
    --hover: #4b5563;
    --border: #e5e7eb;
}

body {
    font-family: "Playfair Display", serif;
}



:root {
    --primary: #1a4331;
    
    --muted: #8e8e8e;
    
    --border: #e0e0e0;
    --font-serif: 'Georgia', serif;
    
}

.novelle-navbar {
    background: #F8FAFC;
    border-bottom: 1px solid #f0f0f0;
    /* padding: 0.5rem 0; */
    font-family: var(--font-serif);
     padding-top: 0px;
    padding-bottom: 0;
}

.navbar-brand img {
    height: 70px;
  width: 50px;
  

}


.novelle-navbar .nav-link {
    color: #8F8F8F;
 font-size: 1.2rem;
    font-weight: 400;
    padding: 0.5rem 0;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.novelle-navbar .nav-link:hover {
    color: var(--primary);
}

.novelle-navbar .nav-link.active {
    color: var(--primary) !important;
}


.novelle-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.novelle-navbar .nav-link.active::after {
    width: 100%;
}


.dropdown-toggle::after {
    display: none;
    
}


.btn-novelle {
    background-color: var(--primary);
    color: #fff;
    /* padding: 10px 30px; */
    border-radius: 4px;
    border: 1px solid var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-novelle:hover {
    background-color: #123023;
    color: #fff;
}

.btn-outline-novelle {
    background: transparent;
    color: var(--muted);
    /* padding: 10px 30px; */
    border-radius: 4px;
    border: 1px solid #cccccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-novelle:hover {
    background-color: #f8f9fa;
    border-color: var(--muted);
    color: var(--primary);
}


@media (max-width: 991.98px) {
    .novelle-navbar .nav-link::after {
        display: none;
        
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-item {
        border-bottom: 1px solid #f8f9fa;
    }
}



.novelle-footer {
    background: linear-gradient(135deg, #1f4d3a 0%, #0f2818 100%);
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 60px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}


.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.footer-brand {
    gap: 20px;
}

.footer-logo {
    width: 105px;
    height: 145px;
    object-fit: contain;
}

.footer-brand-title {
    font-family: 'Algerian';
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 100%;
    font-style: regular;
    color: #ffffff;
}

.footer-brand-text {
    font-family: 'lora' serif;
    font-size: 18px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.85);
    font-style: regular;
    font-weight: 400;
}


.footer-section-heading {
    font-family: 'lora', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 150%;
    font-style: semibold;
}


.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin-left: 0;
}


.footer-links li {
  margin-left: 0;
  padding-left: 0;
}

.footer-links a {
    font-family: 'lora';
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    font-style: regular;
    transition: opacity 0.3s ease;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;

}

.footer-links a:hover {
    opacity: 0.7;
}


.footer-social-container {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 32px;
    align-items: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    opacity: 0.7;
}


.footer-divider {
    width: 1250px;
    align-items: center;
    height: 3px;
    background-color: #3e3e3e;
    
}


.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px and below)
   ============================================ */

@media (max-width: 768px) {
    .novelle-footer {
        padding-top: 60px;
        padding-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-social-container {
        position: static;
        justify-content: center;
        gap: 24px;
        margin-top: 20px;
        width: 100%;
        grid-column: 1 / -1;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .footer-section-heading {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .social-link {
        font-size: 20px;
    }

    .footer-divider {
        width: 80%;
        height: 3px;
        margin: 25px auto;
    }
}

@media (max-width: 480px) {
    .novelle-footer {
        padding-top: 50px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-wrapper {
        gap: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-bottom: 10px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-brand-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .footer-brand-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-section-heading {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social-container {
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    .social-link {
        font-size: 18px;
    }

    .footer-divider {
        width: 90%;
        height: 2.5px;
        margin: 20px auto;
    }


    .footer-copyright p {
        font-size: 14px;
    }
}

@media (min-width: 800px) and (max-width: 1050px) {
    .footer-divider {
        width: 90%;
        max-width: 700px;
        height: 3px;
        margin: 25px auto;
    }
}

@media (min-width: 850px) and (max-width: 1070px) {
    .footer-divider {
        width: 85%;
        max-width: 650px;
        height: 3px;
        margin: 25px auto;
    }
}


/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */

a {
    text-decoration: none;
}

.bi {
    display: inline-block;
}


@media print {
    .novelle-footer {
        page-break-inside: avoid;
    }
}


:root {
    --novelle-green: #1a4331;
    --input-bg: #f3f4f6;
    --text-dark-blue: #1a3044;
    --orange-icon: #fb923c;
}

.contact-page-bg {
    background-color: #f9fafb;
}



.faq-section {
    font-family: serif;
}

.faq-main-heading {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    font-style: semibold;
    
    color: #1a2b3c;
    line-height: 1.1;
}

.faq-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    max-width: 400px;
    font-family: 'lora' serif;
}


.faq-card {
    background: #ffffff;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
    border: 3px rgba(117, 115, 115, 0.05);
}

.faq-card .accordion-item {
    background: transparent;
}


.custom-faq-btn {
    font-family: 'lora', serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000 !important;
    background-color: transparent !important;
    
    box-shadow: none !important;
    justify-content: space-between;
    line-height: 150%;
}


.custom-faq-btn::after {
    display: none;
}

.faq-content {
    font-size: 20px;
    color: #1e293b;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-family: serif;
}


.faq-icon-wrapper {
    width: 45px;
    height: 45px;
    background-color: #1a2b3c;
    
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon-wrapper i {
    font-size: 1.8rem;
}


.custom-faq-btn:not(.collapsed) .faq-icon-wrapper {
    transform: rotate(90deg);
    
}


@media (max-width: 991px) {
    .faq-main-heading {
        font-size: 2.5rem;
    }

    .faq-subtitle {
        max-width: 100%;
    }
}



font {
    font-family: serif;
}

:root {
    --card-bg: #ece2d6;
    --text-navy: #1a2b3c;
    --accent-green: #064e3b;
    --list-text: #4a5568;
}

body {
    background-color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.service-card {
    background-color: var(--card-bg);
    padding: 3.5rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
    position: relative;
}




.shape-top-curve1 {
    border-radius: 5px 470px 5px 5px;
}

.shape-top-curve2 {
    border-radius: 5px 5px 380px 5px;
}



.shape-bottom-curve1 {
    border-radius: 5px 5px 380px 5px;
}

.shape-bottom-curve2 {
    border-radius: 5px 470px 5px 5px;
}



.badge-tag {
    background-color: #ffffff;
    color: var(--accent-green);
    padding: 8px 18px;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.card-title {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-navy);
    letter-spacing: 0.5px;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    font-family: serif;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: serif;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--list-text);
    font-size: 1.1rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-navy);
    font-weight: bold;
}



@media (max-width: 991px) {
    .service-card {
        padding: 2.5rem 1.5rem;
    }

    
    .shape-top-curve,
    .shape-bottom-curve {
        border-radius: 20px 120px 20px 20px;
    }

    
    .shape-bottom-curve {
        border-radius: 20px 120px 20px 20px;
    }
}

.hero-container {
    padding-left: 2.5rem;
    
    padding-right: 2.5rem;
    
}


.join-btn {
    display: inline-block;
    font-family: serif;
    background-color: #166534;
    
    color: #ffffff;
    padding: 12px 32px;
    font-size: 1.35rem;
    
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}


.join-btn:hover {
    background-color: #14532d;
    
    transform: translateY(-2px);
    text-decoration: none;
}


@media (max-width: 768px) {
    .join-btn {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .join-btn {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        padding: 12px;
    }
}


.novelle-cta {
    background-color: #ffffff;
    
    padding: 120px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}


.cta-heading {
    font-family: 'lora', serif;
    font-weight: 600;
    color: #1e293b;
    font-size: 48px;
    line-height: 100%;
}

.cta-subtitle {
    font-family: 'lora', serif;
    color: #4c4c4c;
    font-size: 20px;
    max-width: 700px;
    line-height: 150%;
    margin-left: auto;
    margin-right: auto;
}



.btn-novelle {
    background-color: #1f4237;
    
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.btn-novelle:hover {
    background-color: #163028;
    
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}




.shape-gold {
    position: absolute;
    top: 165px;
    left: -51px;
    width: 20%;
    aspect-ratio: 2 / 1;
    background-color: #e5a835;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
    transform: rotate(90deg);
}


.shape-blue {
    position: absolute;
    top: 165px;
    left: 87px;
    width: 20%;
    aspect-ratio: 2 / 1;
    background-color: #0056a4;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
    transform: rotate(90deg);
}


.shape-orange {
    position: absolute;
    width: 759px;
    height: 745px;
    left: 1100px;
    top: 207px;
    background: #FF6A00;
    z-index: 0;
    pointer-events: none;
    border-radius: 770px;
}




@media (max-width: 992px) {
    .shape-gold {
        width: 80px;
        height: 160px;
        border-radius: 0 80px 80px 0;
    }

    .shape-blue {
        left: 100px;
        width: 90px;
        height: 180px;
        border-radius: 0 90px 90px 0;
    }

    .shape-orange {
        width: 300px;
        height: 300px;
        bottom: -80px;
        right: -60px;
    }

    .novelle-cta {
        padding: 80px 0;
    }
}


@media (max-width: 576px) {

    .shape-gold,
    .shape-blue {
        opacity: 0.3;
        
    }

    .shape-blue {
        left: 90px;
    }
}


.demo-features-section {
    background-color: #f0f1f3;
    
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    
}


.demo-heading {
    font-family: 'Playfair Display', serif;
    color: #1e293b;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
}


.btn-explore {
    background-color: #1d4233;
    
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s ease;
}


.demo-card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    height: auto;
    font-family: serif;
}


.demo-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    
    width: 10px;
    
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 2;
}

.border-blue::before {
    background-color: #f1b23a;
}

.border-yellow::before {
    background-color: #02a118;
}

.demo-card h5 {
    font-family: 'lora', serif;
    font-size: 24px;
    font-weight: 500;
    font-style: medium;
    line-height: 150%;
    color: #000000;
    margin-bottom: 20px;
}

.demo-card p {
    color: #94a3b8;
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
    font-family: 'lora', serif;
}


.shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.shape-left-swirl {
    position: absolute;
    width: 723px;
    height: 453px;
    left: -173px;
    top: -42px;
    background: #E6E5E5;
    border-radius: 4px 374px 4px 4px;
    transform: scaleY(-1);
    z-index: 0;
}


.shape-bottom-right-ring {
    bottom: -51px;
    right: -175px;
    width: 420px;
    height: 420px;
    border: 82px solid #1d4233;
    border-radius: 90%;
    opacity: 1;
    top: 75%;
    left: 73%;
}

.shape-bottom-right-ring2 {
    position: absolute;
    width: 623.29px;
    height: 920.97px;
    left: 703px;
    top: 72px;
    background: #E6E5E5;
    border-radius: 4px 374px 4px 4px;
    transform: rotate(-90.02deg);
    z-index: 0;
}


@media (max-width: 768px) {
    .demo-heading {
        font-size: 2rem;
    }

    .demo-card {
        padding: 40px 20px;
    }
}


.erp-tag {
    display: inline-block;
    background: #ffffff;
    color: #1F4D3A;
    font-style: italic;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: 'lora' serif;
    line-height: 150%;
}

.erp-title {
    font-family: 'lora' serif;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 100%;
}

.erp-list {
    list-style: none;
    padding: 0;
}

.erp-list li {
    font-family: 'lora', serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 0.2rem;
    display: flex;
    font-weight: 400;
    line-height: 150%;
    font-style: regular;
    align-items: flex-start;
}

.erp-list li::before {
    content: "•";
    margin-right: 12px;
    font-weight: bold;
}



@media (max-width: 768px) {
    .erp-card {
        padding: 2.5rem 2rem;
        min-height: 350px;
    }

    .erp-card::after {
        background-size: 40% auto;
    }

    .erp-title {
        font-size: 2rem;
    }
}




.modal-overlay {
    position: fixed;
    inset: 0;
background: rgba(42, 39, 39, 0.914);
    display: none;
    justify-content: center;
    align-items: flex-start;
    
    padding: 60px 5px 5px;
    
    z-index: 2000;
}

.modal-overlay.show {
    display: flex;
}

.modal-overlay.show .modal-content {
    transform: translateY(40px);
}



.modal-content {
    background: #fff;
    width: 100%;
    max-height: 78vh;
    
    border-radius: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.modal-compact {
    max-width: 620px;
    
}


.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 2;
}


.modal-scroll-container {
    overflow-y: auto;
    padding: 1.4rem 2rem 1rem;
    flex: 1;
}


.modal-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.modal-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}



.modal-header {
    display: flex;
    
    align-items: baseline;
    
    gap: 0.8rem;
    
    flex-wrap: wrap;
    
    margin-bottom: 1.2rem;
}


.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    
}


.modal-header .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #292828;
    margin: 0;
    white-space: nowrap;
}


@media (max-width: 768px) {
    .modal-header {
        flex-direction: column;
        
        align-items: flex-start;
        gap: 0.3rem;
    }

    .modal-header h2 {
        font-size: 1.6rem;
        white-space: normal;
    }

    .modal-header .subtitle {
        font-size: 0.95rem;
        white-space: normal;
    }
}



.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.4rem;
}

.field-group {
    margin-bottom: 1rem;
}

label {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    display: block;
}

.instruction {
    font-size: 0.95rem;
    color: #292828;
    margin-bottom: 0.8rem;
}


.input-field {
    width: 100%;
    background: #f5f6f3;
    border: none;
 padding: 0.5rem;
    font-size: 0.95rem;
    border-radius: 2px;
    outline: none;
    color: #444;
}


.select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}


.form-footer {
    padding: 1.2rem 2.6rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    background: #1a4332;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
}


@media (max-width: 768px) {
    .modal-compact {
        max-width: 96%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-scroll-container {
        padding: 1.6rem 1.4rem;
    }

    .form-footer {
        padding: 1rem 1.4rem;
    }

    .btn-submit {
        width: 100%;
    }
}

.cta-btn {
    display: inline-block;
    font-family: serif;
    background-color: #166534;
    
    color: #ffffff;
    padding: 12px 32px;
    font-size: 1.25rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}


.cta-btn:hover {
    background-color: #14532d;
    
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .cta-btn {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .cta-btn {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        padding: 12px;
    }
}


.mainheading {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
    font-style: semibold;
    color: #1E293B;
}

.mainsubheading {
    font-family: 'lora', serif;
    font-weight: 500;
    font-style: medium;
    font-size: 24px;
    line-height: 150%;
}


.input-field.invalid {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 0.8rem;
    display: none;
}

.input-field.invalid + .error-message {
    display: block;
}


.toaster {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toaster-message {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.toaster-message.show {
    opacity: 1;
    transform: translateX(0);
}

.toaster-message.success {
    background-color: #28a745;
}

.toaster-message.error {
    background-color: #dc3545;
}

/* Join community css */

/* Highlight invalid input */
.input-field.error {
  border: 1.5px solid #dc3545;
  background: #fff5f5;
}

/* Error message style */
.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
}