/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --text-color: #374151;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --shadow: 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);
    --radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo-highlight {
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary-color);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    z-index: 100;
    overflow: hidden;
}

.language-selector:hover .lang-dropdown-content {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.lang-option:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.flag {
    font-size: 1.2rem;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-contact:hover {
    background-color: #0EA271;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--light-color);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.floating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections Common */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

/* Bots Section */
.bots-section {
    background-color: white;
    position: relative;
}

.bots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), white);
}

.bot-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bot-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

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

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.bot-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.bot-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.bot-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: white;
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.bot-body {
    padding: 1.5rem;
}

.bot-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bot-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bot-duration::before {
    content: '⏱️';
    font-size: 0.8rem;
}

.bot-features {
    margin-bottom: 2rem;
}

.bot-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.bot-feature i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.bot-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.btn-bot-action {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-bot-action:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Comparison Table */
.comparison-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.comparison-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.comparison-table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.comparison-table th {
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
    position: sticky;
    top: 0;
}

.comparison-table tbody tr:hover {
    background-color: var(--light-color);
}

.comparison-table .feature-cell {
    text-align: left;
    font-weight: 500;
    background-color: var(--light-color);
}

.comparison-table td:not(.feature-cell) {
    font-weight: 500;
}

/* Features Section */
.features-section {
    background-color: var(--light-color);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, white, var(--light-color));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animated {
    animation: fadeUp 0.6s ease forwards;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Support Section */
.support-section {
    background-color: white;
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), white);
}

.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.support-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.support-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background-color: var(--light-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.support-feature:hover {
    background-color: #e5e7eb;
    transform: translateX(5px);
}

.support-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.support-feature span {
    font-weight: 500;
    color: var(--text-color);
}

.support-contact {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.support-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Social Section */
.social-section {
    background-color: var(--light-color);
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, white, var(--light-color));
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.social-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(20px);
}

.social-card.animated {
    animation: fadeUp 0.6s ease forwards;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.social-card.youtube {
    border-top: 4px solid #FF0000;
}

.social-card.telegram {
    border-top: 4px solid #0088cc;
}

.social-card.twitter {
    border-top: 4px solid #1DA1F2;
}

.social-card.instagram {
    border-top: 4px solid #E1306C;
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.social-card:hover .social-icon {
    transform: scale(1.2);
}

.social-card.youtube .social-icon {
    color: #FF0000;
}

.social-card.telegram .social-icon {
    color: #0088cc;
}

.social-card.twitter .social-icon {
    color: #1DA1F2;
}

.social-card.instagram .social-icon {
    color: #E1306C;
}

.social-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), var(--dark-color));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: #D1D5DB;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-column ul li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
}

.footer-column ul li span {
    color: #D1D5DB;
    font-size: 0.95rem;
}

.footer-column ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-language-selector span {
    color: #9CA3AF;
    font-size: 0.9rem;
}

#footer-lang-selector {
    background-color: #374151;
    color: white;
    border: 1px solid #4B5563;
    padding: 0.5rem;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

#footer-lang-selector:hover {
    border-color: var(--primary-color);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.chat-toggle:hover {
    transform: scale(1.1);
    background-color: #0EA271;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    overflow: hidden;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.chat-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chat-body {
    padding: 1.5rem;
}

.chat-message {
    margin-bottom: 1.5rem;
}

.chat-message.bot .message-content {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: var(--radius);
    border-top-left-radius: 0;
    position: relative;
}

.chat-message.bot .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid var(--light-color);
    border-left: 10px solid transparent;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--light-color);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.chat-option:hover {
    background-color: #E5E7EB;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.close-menu-btn:hover {
    background-color: var(--light-color);
}

.mobile-menu-links {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.mobile-language-selector {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.mobile-language-selector h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-option:hover,
.mobile-lang-option.active {
    background-color: var(--primary-color);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container,
    .section-container,
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .support-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    nav:not(.mobile-menu-links) {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .bot-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chat-container {
        width: 280px;
        right: -10px;
    }
    
    .back-to-top {
        bottom: 5rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .chat-container {
        width: 260px;
    }
    
    .mobile-menu-header,
    .mobile-menu-links {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .chat-widget,
    .back-to-top,
    .mobile-menu-btn,
    .btn-contact {
        display: none !important;
    }
    
    header {
        position: static;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        margin-top: 0;
    }
    
    .hero-section::before {
        display: none;
    }
    
    .floating-badge {
        display: none;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #F9FAFB;
        --light-color: #1F2937;
        --text-color: #E5E7EB;
        --text-light: #9CA3AF;
        --border-color: #374151;
    }
    
    body {
        background-color: #111827;
    }
    
    header,
    .bot-card,
    .feature-card,
    .social-card,
    .support-contact,
    .contact-item,
    .chat-container,
    .mobile-menu,
    .comparison-table,
    .bot-header,
    .bot-footer,
    .lang-dropdown-btn,
    .lang-dropdown-content,
    .lang-option,
    .filter-btn,
    .comparison-table th,
    .comparison-table .feature-cell {
        background-color: #1F2937;
    }
    
    .support-feature,
    .chat-option {
        background-color: #374151;
    }
    
    .support-feature:hover {
        background-color: #4B5563;
    }
    
    .chat-option:hover {
        background-color: #4B5563;
    }
    
    .image-container {
        border: 1px solid var(--border-color);
    }
}
/* Add these styles to your existing style.css file */

/* Currency Selector Styles */
.currency-selector {
    position: relative;
}

.currency-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.currency-dropdown-btn:hover {
    border-color: var(--primary-color);
}

.currency-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    z-index: 100;
    overflow: hidden;
}

.currency-selector:hover .currency-dropdown-content {
    display: block;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.currency-option:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.currency-symbol {
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.currency-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Mobile Currency Selector */
.mobile-currency-selector {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-currency-selector h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.mobile-currency-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-currency-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: var(--light-color);
    border: none;
    border-radius: var(--radius);
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-currency-option:hover,
.mobile-currency-option.active {
    background-color: var(--primary-color);
    color: white;
}

/* Dark Theme - Custom */
body.dark-theme {
    --primary-color: #A78BFA;
    --primary-dark: #8B5CF6;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --dark-color: #F9FAFB;
    --light-color: #1F2937;
    --text-color: #E5E7EB;
    --text-light: #9CA3AF;
    --border-color: #374151;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    background-color: #111827;
}

body.dark-theme header,
body.dark-theme .bot-card,
body.dark-theme .feature-card,
body.dark-theme .social-card,
body.dark-theme .support-contact,
body.dark-theme .contact-item,
body.dark-theme .chat-container,
body.dark-theme .mobile-menu,
body.dark-theme .comparison-table,
body.dark-theme .bot-header,
body.dark-theme .bot-footer,
body.dark-theme .lang-dropdown-btn,
body.dark-theme .lang-dropdown-content,
body.dark-theme .lang-option,
body.dark-theme .filter-btn,
body.dark-theme .comparison-table th,
body.dark-theme .comparison-table .feature-cell,
body.dark-theme .currency-dropdown-btn,
body.dark-theme .currency-dropdown-content,
body.dark-theme .currency-option {
    background-color: #1F2937;
    color: var(--text-color);
}

body.dark-theme .hero-section {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

body.dark-theme .hero-section::before {
    opacity: 0.15;
}

body.dark-theme .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

body.dark-theme .btn-primary:hover {
    background-color: var(--primary-dark);
}

body.dark-theme .support-feature,
body.dark-theme .chat-option {
    background-color: #374151;
    color: var(--text-color);
}

body.dark-theme .support-feature:hover {
    background-color: #4B5563;
}

body.dark-theme .chat-option:hover {
    background-color: #4B5563;
}

body.dark-theme .image-container {
    border: 1px solid var(--border-color);
    background-color: #1F2937;
}

body.dark-theme .floating-badge {
    background-color: var(--accent-color);
    color: #1F2937;
    font-weight: 600;
}

body.dark-theme footer {
    background-color: #0F172A;
}

body.dark-theme footer::before {
    background: linear-gradient(to bottom, #1F2937, #0F172A);
}

body.dark-theme .mobile-currency-option,
body.dark-theme .mobile-lang-option {
    background-color: #374151;
    color: var(--text-color);
}

body.dark-theme .mobile-currency-option:hover,
body.dark-theme .mobile-currency-option.active,
body.dark-theme .mobile-lang-option:hover,
body.dark-theme .mobile-lang-option.active {
    background-color: var(--primary-color);
    color: white;
}

body.dark-theme .section-header h2 {
    color: var(--dark-color);
}

body.dark-theme .section-header p {
    color: var(--text-light);
}

body.dark-theme .bot-title {
    color: var(--dark-color);
}

body.dark-theme .feature-icon {
    background-color: rgba(167, 139, 250, 0.2);
    color: var(--primary-color);
}

body.dark-theme .feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* Update existing dark mode media query to work with class */
@media (prefers-color-scheme: dark) {
    body:not(.light-theme) {
        --primary-color: #A78BFA;
        --primary-dark: #8B5CF6;
        --secondary-color: #10B981;
        --accent-color: #F59E0B;
        --dark-color: #F9FAFB;
        --light-color: #1F2937;
        --text-color: #E5E7EB;
        --text-light: #9CA3AF;
        --border-color: #374151;
        background-color: #111827;
    }
    
    body:not(.light-theme) header,
    body:not(.light-theme) .bot-card,
    body:not(.light-theme) .feature-card,
    body:not(.light-theme) .social-card,
    body:not(.light-theme) .support-contact,
    body:not(.light-theme) .contact-item,
    body:not(.light-theme) .chat-container,
    body:not(.light-theme) .mobile-menu,
    body:not(.light-theme) .comparison-table,
    body:not(.light-theme) .bot-header,
    body:not(.light-theme) .bot-footer,
    body:not(.light-theme) .lang-dropdown-btn,
    body:not(.light-theme) .lang-dropdown-content,
    body:not(.light-theme) .lang-option,
    body:not(.light-theme) .filter-btn,
    body:not(.light-theme) .comparison-table th,
    body:not(.light-theme) .comparison-table .feature-cell,
    body:not(.light-theme) .currency-dropdown-btn,
    body:not(.light-theme) .currency-dropdown-content,
    body:not(.light-theme) .currency-option {
        background-color: #1F2937;
        color: var(--text-color);
    }
}
/* Add this to your existing style.css file */

/* Update logo colors to match DevHubX Shop */
.logo-highlight {
    color: #FF6B35; /* Changed from primary purple to orange for Shop */
}

/* Chat widget color */
.chat-toggle {
    background-color: #FF6B35; /* Matching orange */
}

.chat-toggle:hover {
    background-color: #E55A2B;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Update contact button color */
.btn-contact {
    background-color: #FF6B35;
}

.btn-contact:hover {
    background-color: #E55A2B;
}

/* Update some section headers */
.section-header h2::after {
    background-color: #FF6B35;
}

/* Bot action button */
.btn-bot-action {
    background-color: #FF6B35;
}

.btn-bot-action:hover {
    background-color: #E55A2B;
}

/* Update primary color in dark theme */
body.dark-theme .logo-highlight {
    color: #FF9A76; /* Lighter orange for dark theme */
}

body.dark-theme .btn-bot-action,
body.dark-theme .btn-contact,
body.dark-theme .chat-toggle {
    background-color: #FF6B35;
}

body.dark-theme .btn-bot-action:hover,
body.dark-theme .btn-contact:hover,
body.dark-theme .chat-toggle:hover {
    background-color: #E55A2B;
}
/* style.css में नीचे के sections में ये CSS जोड़ें */
/* Slideshow Styles */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    vertical-align: middle;
    height: 400px;
    object-fit: cover;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Slideshow caption */
.slideshow-caption {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Dots/bullets/indicators */
.slideshow-dots {
    text-align: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.active-dot, .dot:hover {
    background-color: var(--primary-color);
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive for slideshow */
@media (max-width: 768px) {
    .mySlides img {
        height: 300px;
    }
    
    .slideshow-caption {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .prev, .next {
        padding: 10px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mySlides img {
        height: 250px;
    }
}
