/* CSS Variables for theming */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-card: rgba(255, 255, 255, 0.9);
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --text-muted: #71717a;
    --border-color: rgba(228, 228, 231, 0.7);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --gradient-blue-emerald: linear-gradient(to right, #2563eb, #10b981);
}

.dark {
    --bg-primary: #09090b;
    --bg-secondary: #18181b;
    --bg-card: rgba(24, 24, 27, 0.7);
    --text-primary: #fafafa;
    --text-secondary: #d4d4d8;
    --text-muted: #a1a1aa;
    --border-color: rgba(39, 39, 42, 0.6);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility classes */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.hidden {
    display: none;
}

.md\:flex {
    display: none;
}

.md\:grid {
    display: none;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:grid {
        display: grid;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Component styles */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.dark .pill {
    background-color: rgba(24, 24, 27, 0.6);
    color: var(--text-secondary);
}

.section-title {
    margin-bottom: 1rem;
    text-align: center;
}

.section-title .kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    backdrop-filter: blur(8px);
    margin-bottom: 0.5rem;
}

.dark .section-title .kicker {
    background-color: rgba(24, 24, 27, 0.6);
    color: var(--text-secondary);
}

.section-title .kicker-dot {
    height: 0.375rem;
    width: 0.375rem;
    border-radius: 9999px;
    background: var(--gradient-blue-emerald);
}

.section-title h2 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.card {
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.icon {
    height: 1rem;
    width: 1rem;
}

/* Backdrop styles */
.backdrop {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: -10;
}

.backdrop-gradients {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60rem 60rem at 110% -10%, rgba(59, 130, 246, 0.16), transparent),
        radial-gradient(50rem 50rem at -10% 100%, rgba(16, 185, 129, 0.14), transparent);
    opacity: 0.8;
}

.dark .backdrop-gradients {
    opacity: 0.4;
}

.backdrop-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.2;
}

.dark .backdrop-grid {
    opacity: 0.1;
}

.backdrop-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: morph 16s ease-in-out infinite;
}

.backdrop-blob-1 {
    left: 25%;
    top: 25%;
    width: 18rem;
    height: 18rem;
    background-color: rgba(59, 130, 246, 0.2);
}

.dark .backdrop-blob-1 {
    background-color: rgba(96, 165, 250, 0.1);
}

.backdrop-blob-2 {
    right: 25%;
    bottom: 0;
    width: 20rem;
    height: 20rem;
    background-color: rgba(52, 211, 153, 0.2);
    animation-duration: 20s;
}

.dark .backdrop-blob-2 {
    background-color: rgba(52, 211, 153, 0.1);
}

@keyframes morph {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -10px) scale(1.05);
    }

    50% {
        transform: translate(-15px, 10px) scale(0.98);
    }

    75% {
        transform: translate(10px, 5px) scale(1.03);
    }
}

/* Header styles */
header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.dark header {
    background-color: rgba(9, 9, 11, 0.7);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

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

.logo-icon {
    height: 2.25rem;
    width: 2.25rem;
    display: grid;
    place-items: center;
    border-radius: 0.75rem;
    background: var(--gradient-blue-emerald);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn {
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--text-primary); /* Ensure text color is set */
}

.btn:hover {
    border-color: rgba(161, 161, 170, 0.7);
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    background: linear-gradient(135deg, #184F1F 35%, #2E8B57 100%); /* adding this to match website color remove this later */

}

.btn-primary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #2E8B57 20%, #184F1F 100%); /* adding this to match website color remove this later */
    box-shadow: 0 4px 12px rgba(24, 79, 31, 0.3); /* adding this to match website color remove this later */
}

.dark .btn-primary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.dark .btn-primary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

/* Ensure anchor tags with ONLY btn class (not btn-primary) have proper button styling */
a.btn:not(.btn-primary) {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

a.btn:not(.btn-primary):hover {
    border-color: rgba(161, 161, 170, 0.7);
    text-decoration: none;
}

/* Fix for dark mode regular buttons */
.dark .btn:not(.btn-primary) {
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.dark .btn:not(.btn-primary):hover {
    color: var(--text-primary);
    border-color: rgba(161, 161, 170, 0.7);
}

/* Hero section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 5rem 1rem;
    }
}

.hero-content h1 {
    margin-top: 0.75rem;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

.hero-content .gradient-text {
    background: var(--gradient-blue-emerald);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    margin-top: 1rem;
    max-width: 36rem;
    color: var(--text-secondary);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-footer {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-footer span.divider {
    height: 0.75rem;
    width: 1px;
    background-color: var(--border-color);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 36rem;
}

.hero-visual-placeholder {
    position: relative;
    border-radius: 1rem;
    border: 2px dashed var(--border-color);
    background-color: var(--bg-card);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.hero-visual-content {
    aspect-ratio: 16/9;
    display: grid;
    place-items: center;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* Optional: Add some styling to make it fit better */
.hero-visual-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .hero-visual-content {
    background-color: rgba(24, 24, 27, 0.5);
}

/* Section styles */
section {
    border-top: 1px solid var(--border-color);
}

.section-bg-light {
    background-color: var(--bg-secondary);
}

.section-padding {
    padding: 1rem 1rem;
}

/* Why us section */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.why-us-card {
    padding: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.why-us-card .card-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Talent section */
.talent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .talent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.talent-card {
    padding: 1.5rem;
}

.talent-card .category {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.talent-card .category.blue {
    color: #1d4ed8;
}

.dark .talent-card .category.blue {
    color: #60a5fa;
}

.talent-card .category.green {
    color: #047857;
}

.dark .talent-card .category.green {
    color: #34d399;
}

.talent-card .category.purple {
    color: #7e22ce;
}

.dark .talent-card .category.purple {
    color: #c084fc;
}

.talent-card .category.rose {
    color: #be123c;
}

.dark .talent-card .category.rose {
    color: #fb7185;
}

.talent-card .category.amber {
    color: #b45309;
}

.dark .talent-card .category.amber {
    color: #fbbf24;
}

.talent-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.talent-card p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.talent-card ul {
    list-style-position: inside;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.talent-card ul li {
    margin-bottom: 0.25rem;
}

.talent-card ul li span {
    font-weight: 500;
    color: var(--text-primary);
}

.talent-card-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
}

/* Pricing section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pricing-card {
    padding: 1.5rem;
}

.pricing-card .title {
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-hero-text {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 2rem 0 3rem 0;
    background: var(--gradient-blue-emerald);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .pricing-hero-text {
        font-size: 3.5rem;
    }
}

/* How it works section */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.how-it-works-card {
    border-radius: 1rem;
    border: 1px dashed var(--border-color);
    background-color: var(--bg-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.how-it-works-card .title {
    font-size: 0.875rem;
    font-weight: 600;
}

.how-it-works-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.how-it-works-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

details {
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s;
}

details[open] {
    box-shadow: var(--shadow-md);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary .toggle {
    border-radius: 9999px;
    border: 1px solid var(--border-color);
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

details[open] summary .toggle {
    transform: rotate(45deg);
}

details p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Models section */
.models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.models-card {
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.models-card:hover {
    box-shadow: var(--shadow-md);
}

.models-card .title {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.models-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.proof-card {
    padding: 1.5rem;
    font-size: 0.875rem;
}

.proof-card p.quote {
    font-style: italic;
}

.proof-card p.attribution {
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

.cta-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .cta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.cta-button {
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button.primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    background: linear-gradient(135deg, #184F1F 25%, #2E8B57 100%); /* adding this to match website color remove this later */

}

.cta-button.primary:hover {
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #2E8B57 0%, #184F1F 100%); /* adding this to match website color remove this later */
    box-shadow: 0 4px 12px rgba(24, 79, 31, 0.3); /* adding this to match website color remove this later */

}

.dark .cta-button.primary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.cta-button.secondary {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.cta-button.secondary:hover {
    border-color: rgba(161, 161, 170, 0.7);
}




/* Portfolio Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);

    
}

.modal-content {
    background-color: var(--bg-primary);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 28rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}





.close {
    color: var(--text-muted);
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--text-primary);
}

.modal-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Portfolio Modal Styles End*/


.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group input::placeholder {
    color: var(--text-muted);
}





/* Mobile sticky CTA */
.mobile-cta {
    position: fixed;
    bottom: 0.75rem;
    left: 0;
    right: 0;
    z-index: 40;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.dark .mobile-cta-container {
    background-color: rgba(24, 24, 27, 0.8);
}

.mobile-cta-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mobile-cta-button {
    border-radius: 0.75rem;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(135deg, #184F1F 25%, #2E8B57 100%); /* adding this to match website color remove this later */

}

.dark .mobile-cta-button {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.pricing-section-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.dark .pricing-section-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
}


/* Modal Prcoessing Styles  */

/* Message container Styles */
.message-container {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid;
}

.message-container.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.2);
}

.dark .message-container.success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

.message-container.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.2);
}

.dark .message-container.error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Spinner Animation */
.spinner {
    display: inline-flex;
    align-items: center;
}

.spinner .icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Button Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Focus States */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.dark .form-group input:focus,
.dark .form-group select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Modal Prcoessing Styles  End */ 
