/* Define Root Variables */
:root {
    --primary-color: #9333EA;
    --primary-light: #A855F7;
    --text-dark: #FFFFFF;
    --text-light: #1F2937;
    --bg-dark: #0C0C11;
    --bg-light: #FFFFFF;
    --card-dark: #191A28;
    --card-light: #F9FAFB;
    --border-dark: #2D3748;
    --border-light: #E5E7EB;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

/* Dark Mode Styles */
.dark-mode {
    --text-color: var(--text-dark);
    --bg-color: var(--bg-dark);
    --card-bg: var(--card-dark);
    --border-color: var(--border-dark);
}

/* Light Mode Styles */
.light-mode {
    --text-color: var(--text-light);
    --bg-color: var(--bg-light);
    --card-bg: var(--card-light);
    --border-color: var(--border-light);
}

/* Body Styles */
body {
    font-family: "Sora";
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    box-sizing: border-box;
}


a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 1rem; */
}

/* Header and Navigation */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(35, 35, 35, 0.8); /* Dark background with glass effect */
    backdrop-filter: blur(10px);
}

.sticky-header.light-mode {
    background-color: rgba(255, 255, 255, 0.8); /* Light background with glass effect */
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo svg {
    margin-right: 0.5rem;
}

.logo-text {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(to right, #8B5CF6, #4C1D95);
    -webkit-background-clip: text;
    color: transparent;
}

.logo-subtext {
    color: rgb(139, 137, 137);
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center; /* Align theme icon with nav items */
}

.nav-item {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-color);
}

/* Contact Button */
.contact-btn {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hide by default */
    cursor: pointer;
}

.hamburger i {
    font-size: 2rem;
    color: var(--text-color);
}

/* Drawer Menu */
.drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100%;
    background-color: var(--bg-dark);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    z-index: 999;
}

.drawer .drawer-close {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}

.drawer .drawer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer .drawer-item {
    font-size: 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.drawer .drawer-item:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;  
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.25rem;  /* Smaller logo on mobile */
    }

    .nav-links {
        display: none;  /* Hide nav links on mobile */
    }

    .hamburger {
        display: block;  /* Show hamburger on small screens */
        order: 2; /* Ensures the hamburger comes after the logo */
    }

    .contact-btn {
        display: none;  /* Hide the contact button on small devices */
    }

    .drawer .drawer-item {
        font-size: 1.5rem;
        color: var(--text-color); /* Ensure text is white in dark mode */
    }

    .drawer .drawer-item:hover {
        color: var(--primary-color);
    }
}


/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #9CA3AF;
}

.demo-box {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-text {
    text-align: left;
}

.demo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.demo-text p {
    margin: 0;
    color: #9CA3AF;
}

.demo-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.demo-btn:hover {
    background-color: var(--primary-light);
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #9CA3AF;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.feature-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional for adding shadow to the card */
}

.feature-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #9CA3AF;
    margin: 0;
}

/* Optional: Styling for when cards are viewed on smaller screens */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem; /* Adjust padding for mobile */
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-text {
    font-weight: 500;
}

.toggle-text.active {
    color: var(--primary-color);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #374151;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* When toggled to "Yearly", move the switch */
.toggle-switch.yearly::after {
    transform: translateX(30px);
}

.toggle-switch.yearly {
    background-color: var(--primary-color);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price,.noprice {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.pricing-description {
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.pricing-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 0;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    margin-bottom: 2rem;
}

.pricing-btn:hover {
    background-color: var(--primary-light);
}

.pricing-features {
    margin-top: auto;
}


.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-check {
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title {
    font-weight: 500;
    font-size: 1.125rem;
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo span:first-child {
    color: var(--primary-color);
}

.footer-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-top.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .demo-box {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .demo-text {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}



/* Reusable Page Layout Styles */
.page-content {
    padding: 4rem 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-text-color);
}

.page-introduction {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.page-section {
    margin-bottom: 3rem;
}

.page-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-text-color);
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-text-color);
}

.page-section ul {
    list-style: disc;
    padding-left: 20px;
}

.page-section ul li {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
}


/* Contact Section Styles */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.5rem;
    color: var(--primary-text-color);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    margin: 0;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-text-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-size: 1.1rem;
    color: var(--primary-text-color);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    color: var(--primary-text-color);
    background-color: var(--input-bg);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: var(--primary-light);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-item {
        width: 100%;
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .contact-form .submit-btn {
        padding: 0.75rem;
        font-size: 1.1rem;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-item {
        width: 100%;
        padding: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .contact-info {
        gap: 1.2rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-form .submit-btn {
        font-size: 1rem;
        padding: 0.75rem;
    }
}
/* /////////////////////////////////////////////////////////////////////
                BOOTSTRAP ADJUSTMENT
////////////////////////////////////////////////////////////////////*/
.row {
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* ///////////////////////////////////////////////// */