:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #4f46e5;
    --accent: #06b6d4;
    --text: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* Main Styles */
.help-support-main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2re6;
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #090430;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.intro-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intro-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-stats {
    color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.features-section span {
    display: block;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-card button {
    background: var(--primary);
    color: var(--surface);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.feature-card button:hover {
    background: var(--primary-dark);
}

/* Contact Forms */
.contact-forms-container {  
    color: #0b0527;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: black;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(14, 8, 103, 0.618);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Project Status */
.project-status-section {
    padding: 4rem 2rem;
    background: #0a0536;
    margin: 3rem 0;
}

.project-status-card {
    background: rgba(17, 4, 63, 0.711);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
}

.project-status-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.status-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--surface);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.status-btn:hover {
    background: var(--primary-dark);
}

/* Voice Support Section */
.voice-support-section {
  background: #06063b;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.voice-support-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.voice-info {
  flex: 1 1 400px;
}

.voice-info h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.voice-info p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.voice-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.voice-feature {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: #333;
}

.voice-feature i {
  color: #007bff;
  font-size: 1.2rem;
}

/* Voice Assistant Box */
.voice-assistant {
  flex: 1 1 400px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}



.voice-wave:nth-child(2) {
  animation-delay: 0.2s;
}

.voice-wave:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% {
    height: 20px;
  }
  50% {
    height: 40px;
  }
}

/* Controls */
.voice-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

.language-selector {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  width: 100%;
}

.primary-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.primary-btn i {
  margin-right: 8px;
}

.primary-btn:hover {
  background-color: #0056b3;
}

.voice-status {
  color: #666;
  font-style: italic;
  margin-top: 10px;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .voice-support-content {
    flex-direction: column;
    gap: 40px;
  }

  .voice-assistant,
  .voice-info {
    width: 100%;
  }
}


/* Contact Info */
.contact-info-section {
    padding: 4rem 2rem;
    background: var(--surface);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: var(--primary);
}

/* AI Bharat Chat Widget Styles */
#chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

#chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#chat-toggle-btn:hover {
    transform: scale(1.1);
}

#chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: var(--bg-color, #fff);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* Chat Header */
.chat-header {
  background-color: #007bff;
  color: white;
  padding: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-status {
  font-size: 0.8rem;
  font-weight: normal;
  margin-left: 8px;
  color: #cfffcd;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Chat Messages */
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  font-size: 0.95rem;
  background: #f7f8fa;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 4px;
}

.typing-indicator span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;
  background-color: #888;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* Chat Input Area */
.chat-input {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-top: 1px solid #ddd;
  background: #fff;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

#user-input {
  flex: 1;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.emoji-button,
.attachment-button {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #888;
  cursor: pointer;
}

#send-button {
  margin-top: 8px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#send-button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 400px) {
  .chat-widget-container {
    width: 90%;
    right: 5%;
    bottom: 80px;
  }

  .chat-toggle-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
    .help-support-main {
        padding: 1rem;
    }

    .intro-section {
        padding: 3rem 1rem;
    }

    .intro-section h1 {
        font-size: 2rem;
    }

    .support-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .voice-support-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .voice-features {
        justify-content: center;
    }

    .chat-widget-container {
        width: 300px;
    }
}
 #chat-widget-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            font-family: 'Arial', sans-serif;
        }

        #chat-toggle-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color:rgb(39, 18, 175);
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        #chat-toggle-btn:hover {
            transform: scale(1.1);
        }

        #chat-box {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 350px;
            height: 500px;
            background-color: rgb(107, 13, 249);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(73, 9, 249, 0.495);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        #chat-header {
            background-color: rgb(23, 8, 70);
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        #chat-header img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }

        #chat-messages {
            flex-grow: 1;
            padding: 15px;
            overflow-y: auto;
            background-color: var(--chat-bg);
        }

        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 10px;
            border-radius: 10px;
            position: relative;
        }

        .message.user {
            background-color: var(--message-user-bg);
            margin-left: auto;
            border-bottom-right-radius: 2px;
        }

        .message.ai {
            background-color: var(--message-ai-bg);
            margin-right: auto;
            border-bottom-left-radius: 2px;
        }

        #chat-input-container {
            padding: 15px;
            background-color: var(--bg-color);
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        #chat-input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
        }

        #send-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        #send-btn:hover {
            background-color: #357abd;
        }

        .typing-indicator {
            display: none;
            padding: 10px;
            background-color: var(--message-ai-bg);
            border-radius: 10px;
            margin-bottom: 15px;
            width: fit-content;
        }

        .typing-indicator span {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #90949c;
            border-radius: 50%;
            margin-right: 5px;
            animation: typing 1s infinite ease-in-out;
        }

        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @media (max-width: 480px) {
            #chat-box {
                width: calc(100% - 40px);
                height: calc(100% - 120px);
            }
        }