@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root{
    /* Light Mode Colors */
    --bg-color: #fff;
    --btn-color: #fdfdfd;
    --btn-bg: #000;
    --primary-text-color: #000;
    --header-link-hover: #000;
    --input-hover-bd-color: #000;
    
    /* Enhanced color palette - Blue Grey Theme */
    --primary-blue-grey: #607d8b;
    --primary-blue-grey-light: #78909c;
    --primary-blue-grey-dark: #455a64;
    --primary-blue-grey-darker: #37474f;
    --accent-blue: #2196f3;
    --accent-teal: #00acc1;
    --text-gray: #37474f;
    --text-light-gray: #546e7a;
    --bg-gray: #fafafa;
    --bg-blue-grey-light: #eceff1;
    --border-gray: #cfd8dc;
    
    /* Additional theme variables */
    --body-bg: #ffffff;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --input-bg: #ffffff;
    --primary-text: #000000;
    --secondary-text: #374151;
    --tertiary-text: #6b7280;
    --border-color: #e5e7eb;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --bg-color: #1a1a1a;
    --btn-color: #e5e5e5;
    --btn-bg: #ffffff;
    --primary-text-color: #ffffff;
    --header-link-hover: #ffffff;
    --input-hover-bd-color: #60a5fa;
    
    /* Enhanced color palette - Dark Mode */
    --text-gray: #e5e7eb;
    --text-light-gray: #9ca3af;
    --bg-gray: #2d2d2d;
    --bg-blue-grey-light: #374151;
    --border-gray: #4b5563;
    
    /* Dark theme variables */
    --body-bg: #0f0f0f;
    --card-bg: #1f1f1f;
    --header-bg: rgba(31, 31, 31, 0.95);
    --input-bg: #374151;
    --primary-text: #ffffff;
    --secondary-text: #e5e7eb;
    --tertiary-text: #9ca3af;
    --border-color: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Body and general theming */
body {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--body-bg) !important;
    color: var(--primary-text) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Override Tailwind body classes */
.tw-bg-white {
    background-color: var(--body-bg) !important;
}

.tw-text-black {
    color: var(--primary-text) !important;
}

/* Dark mode toggle styles */
#theme-toggle {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--primary-text);
}

#theme-toggle:hover {
    background-color: var(--bg-gray);
}

[data-theme="dark"] .theme-icon-light {
    display: none;
}

[data-theme="dark"] .theme-icon-dark {
    display: inline !important;
}

/* Header theming */
.nav-header {
    background: var(--header-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-header span {
    color: var(--primary-text) !important;
}

/* Hero section theming */
.hero-gradient {
    background: var(--body-bg);
}

[data-theme="dark"] .hero-gradient {
    background: linear-gradient(135deg, rgba(15, 15, 15, 1) 0%, rgba(31, 31, 31, 0.8) 50%, rgba(15, 15, 15, 1) 100%);
}

.hero-gradient::before {
    display: none;
}

[data-theme="dark"] .hero-gradient::before {
    display: block;
    background: radial-gradient(circle at 30% 20%, rgba(96, 125, 139, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.08) 0%, transparent 50%);
}

.hero-title {
    color: var(--primary-text) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}

.hero-subtitle {
    color: var(--secondary-text) !important;
}

/* Form container width constraints to prevent button merging */
#hero-signup-form {
    max-width: 100%;
    min-width: 280px;
}

#pattr-signup-form .tw-flex {
    max-width: 100%;
    min-width: 280px;
}

/* Ensure proper spacing between form elements */
#hero-signup-form input {
    min-width: 200px;
}

#pattr-signup-form input {
    min-width: 200px;
}

#hero-signup-form button,
#pattr-signup-form button {
    min-width: 120px;
}

/* Prevent button merging at intermediate screen sizes */
@media (max-width: 900px) {
    #hero-signup-form {
        padding: 20px !important;
    }
    
    #hero-signup-form > div {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    #hero-signup-form input {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        margin-bottom: 0 !important;
    }
    
    #hero-signup-form button {
        width: 100% !important;
        flex-shrink: 0 !important;
        min-height: 48px !important;
    }
    
    /* Bottom signup form improvements */
    #pattr-signup-form .tw-flex {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    #pattr-signup-form input {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }
    
    #pattr-signup-form button {
        width: 100% !important;
        flex-shrink: 0 !important;
        min-height: 48px !important;
    }
}

/* Additional breakpoint for small tablets */
@media (max-width: 820px) and (min-width: 769px) {
    #hero-signup-form,
    #pattr-signup-form .tw-flex {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    #hero-signup-form {
        padding: 16px !important;
    }
    
    #hero-signup-form input,
    #pattr-signup-form input {
        width: 100% !important;
        flex: none !important;
    }
    
    #hero-signup-form button,
    #pattr-signup-form button {
        width: 100% !important;
        min-height: 48px !important;
    }
}

/* Tablet and mobile responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
    
    /* Better touch targets for mobile */
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Mobile form improvements - simplified with new structure */
    #hero-signup-form,
    #pattr-signup-form {
        width: 100%;
    }
    
    #hero-signup-form input,
    #pattr-signup-form input {
        min-height: 48px;
        font-size: 16px !important;
    }
    
    /* Mobile navigation improvements */
    .nav-header {
        padding: 0 4%;
    }
    
    /* Mobile menu styles removed - no navigation needed */
    
    /* Mobile phone mockup improvements */
    .phone-mockup-container img {
        max-width: 320px !important;
        height: auto !important;
    }
    
    .phone-mockup-container {
        max-width: 320px !important;
        min-height: 350px !important;
    }
    
    /* Mobile spacing improvements */
    .section-padding {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    /* Mobile grid improvements */
    .tw-grid-cols-1.md\:tw-grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .tw-grid-cols-1.lg\:tw-grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    /* Mobile testimonial improvements */
    .testimonial-card {
        padding: 20px;
        margin: 12px 0;
    }
    
    /* Mobile stats improvements */
    .stat-item {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
}

/* Form message styles */
.success-message {
    color: #059669;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.error-message {
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.loading-spinner.tw-hidden {
    display: none !important;
}

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

/* Button loading state */
.btn-primary:disabled {
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled:hover {
    transform: none !important;
}

/* Extra small mobile optimizations */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .phone-mockup-container img {
        max-width: 320px !important;
    }
    
    .phone-mockup-container {
        max-width: 320px !important;
        min-height: 300px !important;
    }
    
    /* Better mobile form layout */
    #hero-signup-form {
        padding: 20px !important;
    }
    
    #hero-signup-form > div {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    #hero-signup-form input {
        width: 100% !important;
    }
    
    #hero-signup-form button {
        width: 100% !important;
    }
    
    /* Mobile CTA improvements */
    .reveal-up .tw-flex.tw-place-items-center {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        text-align: center !important;
    }
}

/* Section and card theming */
.section-padding {
    background-color: var(--body-bg);
}

[data-theme="dark"] .section-padding {
    background-color: var(--body-bg);
}

/* White sections and elements become dark */
section.tw-bg-white,
.tw-bg-white,
div.tw-bg-white,
.feature-card.tw-bg-white {
    background-color: var(--card-bg) !important;
}

/* Override body background specifically */
body.tw-bg-white {
    background-color: var(--body-bg) !important;
}

/* Text color theming */
.section-title {
    color: var(--primary-text) !important;
}

.section-subtitle {
    color: var(--secondary-text) !important;
}

h2, h3, h4, h5, h6 {
    color: var(--primary-text);
}

.tw-text-gray-900 {
    color: var(--primary-text) !important;
}

.tw-text-gray-600 {
    color: var(--secondary-text) !important;
}

.tw-text-gray-500 {
    color: var(--tertiary-text) !important;
}

.tw-text-gray-700 {
    color: var(--secondary-text) !important;
}

/* Card theming */
.feature-card, .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-text);
}

.feature-card:hover, .testimonial-card:hover {
    box-shadow: 0 20px 25px -5px var(--shadow-color), 0 10px 10px -5px var(--shadow-color);
}

/* Input and form theming */
input[type="email"], .input {
    background-color: var(--input-bg) !important;
    color: var(--primary-text) !important;
    border-color: var(--border-color) !important;
}

input[type="email"]:focus, .input:focus {
    border-color: var(--accent-blue) !important;
}

input::placeholder {
    color: var(--tertiary-text) !important;
}

/* Form messages */
.success-message {
    background-color: var(--card-bg);
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

.error-message {
    background-color: var(--card-bg);
    border-color: #ef4444;
    color: #ef4444;
}

/* Hero gradient background - updated */
.hero-gradient {
    background: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Enhanced typography - removed gradient for dark mode compatibility */
.hero-title {
    font-weight: 800;
    color: var(--primary-text);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    font-weight: 400;
    line-height: 1.6;
}

/* Modern button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue-grey) 0%, var(--primary-blue-grey-light) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(96, 125, 139, 0.3);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 125, 139, 0.4);
    background: linear-gradient(135deg, var(--primary-blue-grey-dark) 0%, var(--primary-blue-grey) 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(96, 125, 139, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-gray);
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
    border-color: var(--primary-blue-grey);
    color: var(--primary-blue-grey);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Modern card styles */
.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -1px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--primary-text);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px var(--shadow-color), 0 10px 10px -5px var(--shadow-color);
}

/* Section styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Testimonial cards */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
    margin: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue-grey) 0%, var(--primary-blue-grey-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* Borders and shadows */
.tw-border-gray-200 {
    border-color: var(--border-color) !important;
}

.tw-border-gray-300 {
    border-color: var(--border-color) !important;
}

.tw-shadow-lg {
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -2px var(--shadow-color) !important;
}

/* Scrolling text elements */
.sliding-image {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--primary-text);
}

/* Stats styling */
.stat-item {
    background-color: var(--card-bg);
    color: var(--primary-text);
}

.stat-number {
    color: var(--primary-blue-grey);
}

.stat-label {
    color: var(--tertiary-text);
}

/* Footer styling */
footer {
    background-color: var(--card-bg);
    color: var(--primary-text);
}

.footer-link {
    color: var(--secondary-text);
}

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

/* Navigation styles - updated */
.nav-header {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* Navigation links and mobile menu button styles removed - no navigation needed */

/* Stats section */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue-grey);
    display: block;
}

.stat-label {
    color: var(--text-light-gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero signup form styles */
#hero-signup-form {
    background: transparent;
}

#hero-signup-form input {
    font-size: 16px; /* Prevents zoom on iOS */
    width: 100%;
    min-width: 0;
    flex: 1;
    background-color: var(--input-bg) !important;
    color: var(--primary-text) !important;
    border-color: var(--border-color) !important;
}

#hero-signup-form input:focus {
    outline: none;
}

#hero-signup-form button {
    min-width: 100px;
    flex-shrink: 0;
}

/* Additional form spacing for reCAPTCHA integration */
#hero-signup-form .g-recaptcha,
#pattr-signup-form .g-recaptcha {
    margin: 8px 0;
}

/* Enhanced button spacing */
#hero-signup-form button,
#pattr-signup-form button {
    padding: 14px 20px !important;
    min-height: 50px !important;
}

/* Better input field spacing */
#hero-signup-form input[type="email"],
#pattr-signup-form input[type="email"] {
    padding: 14px 16px !important;
    min-height: 50px !important;
}

/* Input field optimizations */
input[type="email"] {
    font-size: 16px !important;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="email"]::placeholder {
    color: #9ca3af;
    opacity: 1;
}

input[type="email"]:focus::placeholder {
    opacity: 0.7;
}

/* Source link styles */
.stat-label .source-link {
    font-size: 8px !important;
    color: #9ca3af !important;
    transition: color 0.2s ease;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: normal !important;
}

.stat-label .source-link:hover {
    color: #6b7280 !important;
}

/* Phone mockup styles - static images only */
.phone-mockup-container {
    aspect-ratio: 9/19; /* Standard phone aspect ratio */
    min-height: 400px; /* Ensure minimum height for layout stability */
}

/* Mobile-specific phone mockup improvements */
@media (max-width: 768px) {
    .phone-mockup-container {
        aspect-ratio: 9/19;
        min-height: 350px;
        max-width: 320px !important;
        width: 85% !important;
        margin: 0 auto;
    }
    
    .phone-mockup-container img {
        max-width: 320px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .phone-mockup-container {
        min-height: 300px;
        max-width: 350px !important;
        width: 90% !important;
    }
    
    .phone-mockup-container img {
        max-width: 350px !important;
        width: 100% !important;
    }
}

/* Dissolve slideshow styles */
.dissolve-container {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.dissolve-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 1.5s ease-in-out;
}

.dissolve-back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.dissolve-front {
    opacity: 1;
    position: relative;
    z-index: 2;
}

/* reCAPTCHA responsive styling */
.g-recaptcha {
    transform: scale(1);
    transform-origin: center center;
    margin: 0 auto;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

/* reCAPTCHA dark mode container styling */
[data-theme="dark"] .g-recaptcha {
    /* Add a subtle border to help it blend with dark mode */
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center center;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: center center;
        margin: 0 auto;
    }
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better mobile scrolling */
    .scroller {
        animation-duration: 60s;
    }
    
    /* Mobile-specific animations */
    .reveal-up {
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    /* Mobile form improvements */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Mobile navigation improvements */
    .nav-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    /* Mobile menu improvements removed - no navigation needed */
}

/* Extra small mobile optimizations */
@media (max-width: 480px) {
    /* Smaller touch targets for very small screens */
    .btn-primary, .btn-secondary {
        min-height: 40px;
        padding: 12px 20px;
    }
    
    /* Better mobile spacing */
    .section-padding {
        padding: 40px 0;
    }
    
    /* Mobile typography improvements */
    .hero-title {
        font-size: 1.875rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile form layout improvements - simplified */
    #hero-signup-form,
    #pattr-signup-form {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Main signup form mobile optimizations */
    #pattr-signup-form input {
        width: 100% !important;
        font-size: 16px !important;
        padding: 14px 16px !important;
        min-height: 48px !important;
    }
    
    #pattr-signup-form button {
        width: 100% !important;
        min-height: 48px !important;
    }
    
    /* Mobile CTA improvements */
    .reveal-up .tw-flex.tw-place-items-center {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        padding: 14px 24px !important;
    }
    
    /* Mobile phone mockup improvements */
    .phone-mockup-container {
        padding: 0 16px;
    }
    
    .phone-mockup-container img {
        max-width: 350px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Mobile grid improvements */
    .tw-grid {
        gap: 16px !important;
    }
    
    /* Mobile card improvements */
    .feature-card {
        padding: 16px !important;
        margin-bottom: 12px !important;
    }
    
    /* Mobile testimonial improvements */
    .testimonial-card {
        padding: 16px !important;
        margin: 8px 0 !important;
    }
    
    /* Mobile stats improvements */
    .stat-item {
        padding: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
}


header{
    /* background-color: #fff;
    color: #000; */
    color: #4b4b4b;
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}


.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
}


.header-links:hover {
    color: #000000;
    /* background-color: var(--header-link-hover); */
}

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


.signup-img-section{
    background-image: url("../assets/images/home/darkbg.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.edge-gradient{
    background: rgb(28, 28, 28);
    background: linear-gradient(83deg, var(--body-bg) 0%, transparent 20%, transparent 80%, var(--body-bg) 100%);
}

.scroller{
    /* width: max-content;
    flex-wrap: nowrap; */
    animation: scroll 40s forwards linear infinite;
  }
  
  .scroller[data-direction="right"] {
      animation-direction: reverse;
  }
  
  .scroller[data-direction="left"] {
      animation-direction: forwards;
  }
  
  .scroller[data-direction="left"] {
      animation-direction: forwards;
  }
  
  .scroller[data-speed="fast"]{
      animation-duration: 30s;
  }
  
  .scroller[data-speed="slow"]{
      animation-duration: 80s;
  }

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link{
    color: #434242;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #0b0b0b;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 10;
}

/* Position the "next button" to the right */
.next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



/* Style for the collapsible content such as faq commonly known as: accordion */

.faq{
    background-color: #fff;
    color: #000000;
    border: 1px solid #000;
}

.faq-accordion {
    background-color: inherit;
    color: #000000;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #232323;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links{
        color: rgb(255, 255, 255);
    }
    
}