/* styles.css */

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

a {
    color: #333;
    text-decoration: none;
}

.navbar {
    background: #000; /* Black background for the navbar */
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Adding subtle shadow for better definition */
}

.navbar .logo {
    margin-right: auto; /* Pushes all other elements to the right */
}

.navbar .logo img {
    height: 50px;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar .nav-links li {
    list-style: none;
}

.navbar .nav-links li a {
    color: white;
    font-weight: bold;
    padding: 10px;
    transition: background 0.3s, color 0.3s;
}

.navbar .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}
/* Hamburger Button Styles for Mobile */
.navbar .navbar-toggler {
    display: none;
    background: #000;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

/* Show hamburger button on mobile and hide links by default */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #000;
        width: 100%;
        text-align: center;
    }

    .navbar .nav-links.show {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .navbar-toggler {
        display: block;
    }

    .navbar .nav-links li {
        width: 100%;
        text-align: left;
    }

    .navbar .nav-links li a {
        width: 100%;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #444;
    }

    .navbar .nav-links li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Hero section styles */
.hero-section {
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
  background-color: #1e1e2f;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}


.hero-text {
    flex: 0 0 60%;
    padding-right: 2rem;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

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

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary {
  background-color: #6c5ce7;
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #1e1e2f;
}

.hero-video {
  flex: 0 0 40%;
}

.hero-video video {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1rem 4rem; /* Increased top padding */
    min-height: auto; /* Remove fixed height on mobile */
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem; /* Slightly smaller font size */
    margin-top: 2rem; /* Add some space at the top */
  }

  .hero-text p {
    font-size: 1rem; /* Smaller font size for paragraph */
  }

  .hero-video {
    flex: 0 0 100%;
    margin-top: 2rem; /* Add space above the video/animation */
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column; /* Stack buttons vertically on very small screens */
    gap: 1rem;
  }

  .btn {
    width: 100%; /* Make buttons full width on mobile */
  }
}

/* Section Styles */
section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.features {
    background: #fff;
    color: #333;
    padding: 40px 0;
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #0033cc;
    font-weight: bold;
}

.feature-slider {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    display: flex !important; /* Force flex display */
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
}

.feature video {
    width: 55%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.feature-content {
    width: 40%;
    padding-left: 40px;
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.feature-content p {
    font-size: 1rem;
    color: #666;
}

/* Slick slider overrides */
.slick-slide {
    display: flex !important;
}

.slick-slide > div {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
    }
    
    .feature video,
    .feature-content {
        width: 100%;
    }
    
    .feature-content {
        padding-left: 0;
        margin-top: 20px;
    }
}
.demo-section {
    background: linear-gradient(120deg, #2851a3 0%, #5ba6d6 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demo-container {
    text-align: center;
}

.demo-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.demo-section p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-book-demo {
    display: inline-block;
    background-color: #ffffff;
    color: #2851a3;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-book-demo:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-book-demo::after {
    content: " →";
    font-size: 1.2em;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .demo-section {
        padding: 30px;
        margin: 20px;
    }

    .demo-section h2 {
        font-size: 2rem;
    }
    
    .demo-section p {
        font-size: 1rem;
    }

    .btn-book-demo {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

.how-it-works {
    background: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 40px;
}
.how-it-works h2 {
    font-size: 2.5rem; /* Increase the font size */
    color: #0033cc; /* Change the color to blue */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
.how-it-works-video {
    margin-bottom: 40px;
}

.how-it-works-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    text-align: center;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #0033cc;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .how-it-works-cards {
        flex-direction: column;
        gap: 20px;
    }
}

/* Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.modal-content {
    display: flex;
    background: #fff;
    width: 95%;
    max-width: 1200px;
    height: 80vh;
    max-height: 700px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-left {
    flex: 0 0 45%;
    padding: 60px;
    background: #3a0647;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-logo {
    width: 120px;
    margin-bottom: 30px;
}

.modal-left h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.modal-right {
    flex: 0 0 55%;
    padding: 60px;
    background: white;
    overflow-y: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.contact-form button {
    padding: 15px;
    background-color: #7c5cff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #6a4dff;
}

.privacy-text {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    line-height: 1.4;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .modal-content {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
    }
    .modal-left, .modal-right {
        flex: none;
        width: 100%;
        padding: 40px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row; /* Ensure row direction on mobile */
        align-items: center;
    }

    .navbar .logo {
        flex: 1; /* Ensure the logo stays on the left */
    }

    .navbar .navbar-toggler {
        display: block;
        z-index: 1002; /* Ensure it's above other elements */
        position: relative;
        right: 10px; /* Slight adjustment for better alignment */
        margin-left: auto;
    }

    .navbar .nav-links {
        flex-direction: column;
        width: 100%;
        top: 60px;
    }

    .navbar .nav-links li {
        width: 100%;
        text-align: left;
    }

    .navbar .nav-links li a {
        width: 100%;
        display: block;
    }

    header {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features, .how-it-works, .demo-container {
        width: 100%;
        padding: 20px;
    }

    .feature-slider, .steps-slider {
        width: 100%;
    }

    .modal-content {
        margin: 50px auto;
    }

    .testimonials, .testimonial-slider {
        width: 100%;
        padding: 20px;
    }
}

/* Additional styling for improved functionality on mobile */
.navbar .nav-links.show {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Contact Page Styles */
/* General styling */
.contact-section {
    text-align: center;
    padding: 120px 20px 50px;
    background: #f9f9f9;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #6c5ce7;
}

.contact-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Tabs styling */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
    position: relative;
    padding-bottom: 20px;
}

.tablink {
    background-color: #f0f0f0; /* Light grey background for inactive tabs */
    color: #000; /* Black text for inactive tabs */
    padding: 30px 40px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 350px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tablink.active {
    background: linear-gradient(135deg, #6c5ce7, #89c4f4); /* Gradient background for active tab */
    color: #fff; /* White text for active tab */
    z-index: 2; /* Ensure active tab is above the inactive one */
    box-shadow: none;
}

.tablink h3 {
    margin: 0;
    font-size: 1.5rem;
    color: inherit; /* Use the color of the parent element */
}

.tablink p {
    margin-top: 10px;
    font-size: 1rem;
    color: inherit; /* Use the color of the parent element */
}

.tablink.active h3,
.tablink.active p {
    color: #fff; /* Ensure text is white on active tab */
}

/* Arrow below active tab */
.tablink.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #f9f9f9;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 3; /* Ensure arrow is above all tabs */
}

/* Tab content styling */
.tabcontent {
    display: none;
    padding: 40px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: -40px auto 0;
    z-index: 1;
    position:relative;
}

.tabcontent.active {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

/* Document Types Checkboxes */
.document-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.document-types label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 5px 15px;
    transition: background-color 0.3s, border-color 0.3s;
}

.document-types label:hover {
    background-color: #f0f0f0;
    border-color: #d0d0d0;
}

.document-types input[type="checkbox"] {
    margin-right: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
}

.document-types input[type="checkbox"]:checked {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.document-types input[type="checkbox"]:checked::before {
    content: '\2713';
    display: block;
    text-align: center;
    color: white;
    font-size: 14px;
    line-height: 16px;
}

/* Style for the "Documents Processed/Month" input */
input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Style for the "Please describe your use case" textarea */
textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    resize: vertical;
    min-height: 100px;
}

/* Additional styles for form layout */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Textarea */
.contact-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    width: 100%;
    min-height: 100px;
    margin-bottom: 20px;
    resize: vertical;
}

/* Submit Button */
.contact-form button {
    padding: 15px;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
}

.contact-form button:hover {
    background-color: #574bb1;
}

.testimonials {
    background: #f5f5f5; /* Light grey background for contrast */
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #0033cc;
    margin-bottom: 40px;
    font-weight: bold;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Adjusts based on number of testimonials */
    gap: 40px;
}

.testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial p {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial h3 {
    font-size: 1rem;
    color: #555;
    margin-top: 20px;
    font-weight: normal;
}

.testimonial i.fas.fa-quote-left, 
.testimonial i.fas.fa-quote-right {
    font-size: 2rem;
    color: #0033cc; /* Color matching the theme */
    opacity: 0.2;
}

.testimonial i.fas.fa-quote-left {
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial i.fas.fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: -10px;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr; /* Stacks testimonials on smaller screens */
    }
}

.faq {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #1a73e8;
}

.faq-answer {
    display: none;
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
    .faq-question {
        flex-direction: column;
        text-align: left;
    }

    .faq-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* AI Models Section */
.ai-models {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.ai-models .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ai-models-logos {
    flex: 1 1 50%;
    text-align: center;
}

.ai-models-text {
    flex: 1 1 50%;
    padding-left: 40px;
    text-align: left;
}
.ai-models-image {
    width: 100%; /* Make sure the image takes up its container's width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't exceed its container */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.ai-models-text h2 {
    font-size: 2rem;
    color: #0033cc;
    margin-bottom: 15px;
    font-weight: bold;
}

.ai-models-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #6c5ce7;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #574bb1;
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
    .ai-models .container {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center text below the image */
    }

    .ai-models-text {
        padding-left: 0;
        margin-top: 20px;
    }

    .ai-models-logos {
        margin-bottom: 20px;
    }
}

.generative-ai-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.video-container {
    flex: 1;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-container {
    flex: 1;
    padding-left: 20px;
}

.text-container h2 {
    font-size: 2rem;
    color: #0033cc;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        padding-left: 0;
        margin-top: 20px;
    }
}

.deployment-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.text-container {
    flex: 1;
    padding-right: 20px;
}

.text-container h2 {
    font-size: 2.5rem;
    color: #0033cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.text-container p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.video-container {
    flex: 1;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .video-container video {
        margin-top: 20px;
    }
}

/* Auth Pages (Sign In and Register) Styles */

/* Container for the form */
.auth-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 100px auto; /* Centered vertically with margin */
    text-align: center;
}

/* Heading Style */
.auth-container h2 {
    font-size: 2rem;
    color: #0033cc; /* Match with your website's color scheme */
    margin-bottom: 20px;
    font-weight: bold;
}

/* Form Inputs */
.auth-container input[type="email"],
.auth-container input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Submit Button */
.auth-container button {
    width: 100%;
    padding: 15px;
    background-color: #6c5ce7; /* Match the button color with your website */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.auth-container button:hover {
    background-color: #574bb1; /* Darker shade on hover */
}

/* Link to the other auth page */
.auth-container p {
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
}

.auth-container a {
    color: #0033cc; /* Link color matching your website */
    text-decoration: none;
    font-weight: bold;
}

.auth-container a:hover {
    text-decoration: underline;
}


/* Style for the DocEX Demo Button */
.btn-register {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1e90ff, #00bfff); /* Blue Gradient */
    color: white;
    border-radius: 50px; /* More rounded corners */
    font-weight: bold;
    font-size: 16px; /* Slightly larger font */
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s; /* Add transform to the transition */
    margin-left: 15px; /* Add some space between buttons */
    text-transform: uppercase; /* Make text uppercase for emphasis */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.btn-register:hover {
    background: linear-gradient(135deg, #4a00e0, #8e2de2); /* Reverse Gradient on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Larger shadow on hover */
    transform: translateY(-3px); /* Slight lift effect on hover */
}

/* Ensure the button aligns properly in the navbar */
.navbar .nav-links li a.btn-register {
    display: inline-block;
    padding: 10px 25px;
}
/* Style for the Sign In Button */
.btn-signin {
    display: inline-block;
    padding: 10px 20px;
    color: #ffffff;
    font-weight: bold;
    margin-left: 10px; /* Add some space between buttons */
}

.btn-signin:hover {
    text-decoration: underline;
}

/* Registration Success Page Styles */
.success-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 100px auto; /* Centered vertically with margin */
    text-align: center;
}

.success-container h2 {
    font-size: 2rem;
    color: #0033cc; /* Match with your website's color scheme */
    margin-bottom: 20px;
    font-weight: bold;
}

.success-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.success-container a {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1e90ff, #00bfff); /* Blue Gradient */
    color: white;
    border-radius: 50px; /* More rounded corners */
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    margin-top: 20px; /* Add some space on top */
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.success-container a:hover {
    background: linear-gradient(135deg, #4a00e0, #8e2de2); /* Reverse Gradient on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px); /* Slight lift effect on hover */
}

.complexity-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.complexity-text {
    flex: 1;
    padding-right: 20px;
}

.complexity-text h2 {
    font-size: 2.5rem;
    color: #0033cc;
    margin-bottom: 20px;
    font-weight: bold;
}

.complexity-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.complexity-video-container {
    flex: 1;
}

.complexity-video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .complexity-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .complexity-video-container video {
        margin-top: 20px;
    }
}



/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Ensure the content inside is stacked vertically */
    align-items: center; /* Center-align content horizontally */
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%; /* Ensure the header takes the full width of the container */
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%; /* Make sure the grid also takes the full width of the container */
    flex-wrap: wrap; /* Ensure the cards wrap on smaller screens */
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: calc(25% - 15px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1rem;
    color: #1a73e8;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.btn-quote {
    background-color: #1a73e8;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: #1557b0;
}

.includes {
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
}

.pricing-card li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    position: relative;
    padding-left: 15px;
}

.pricing-card li::before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: 0;
}

.recommended {
    border: 2px solid #1a73e8;
    position: relative;
}

.tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a73e8;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .pricing-grid {
        flex-wrap: wrap;
    }
    
    .pricing-card {
        max-width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        max-width: 100%;
    }
}



/* Footer styles */
.footer {
    background-color: #0a0a1a;
    color: #ffffff;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.community-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #252525;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #3a3a3a;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #252525;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 14px;
}

.footer-bottom a {
    color: #a0a0a0;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 10px;
    }
}

/* Privacy Policy Styles */
.privacy-policy-container {
    background-color: #f9f9f9;
    padding: 60px 0;
    min-height: calc(100vh - 100px); /* Adjust based on your header/footer height */
}

.privacy-policy-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy-content h1 {
    font-size: 2.5rem;
    color: #0033cc;
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.privacy-policy-content h2 {
    font-size: 1.8rem;
    color: #0033cc;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.privacy-policy-content p, 
.privacy-policy-content ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    padding-left: 20px;
}

.privacy-policy-content a {
    color: #0033cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #002299;
    text-decoration: underline;
}

.contact-info {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 0;
    }

    .privacy-policy-content {
        padding: 20px;
    }

    .privacy-policy-content h1 {
        font-size: 2rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.5rem;
    }
}
/* Use Cases Section Styles */
.use-cases {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.use-cases h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

#industry-filter,
#search-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#industry-filter {
    width: 200px;
}

#search-input {
    width: 300px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.use-case-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.use-case-card h3 {
    padding: 15px;
    margin: 0;
    font-size: 18px;
    color: #333;
}

.learn-more {
    display: block;
    padding: 10px 15px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
    }

    #industry-filter,
    #search-input {
        width: 100%;
        margin-bottom: 15px;
    }
}
