/* Reset some basic elements */
body, h1, h2, h3, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Helvetica', sans-serif;
}

#text {
    padding: 20px;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

/* Header and Navigation Styles */
header {
    position: relative;
    background: #9323BA; /* Fixed color for the left side */
    padding: 10px 0;
    color: white;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 28%;
    width: 300px;  /* Increased from 200px */
    height: 300px; /* Increased from 200px */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(
        90deg,
        #9323BA,
        #700097
    );
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    animation: circle-move 20s ease-in-out infinite;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 33%;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        -45deg,
        #9323BA,
        #700097,
        #8A2BE2,
        #9400D3
    );
    background-size: 400% 400%;
    animation: gradient-wave 15s ease infinite;
    z-index: 1;
}

/* Ensure nav content stays above both gradients */
nav {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

nav .logo img {
    height: 200px;
}

nav .navigation a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* Section styling */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section headers */
section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #9323BA, #700097);
    border-radius: 2px;
}

/* Home section */
#home {
    background: linear-gradient(to right, #700097, #D868FF);
    color: white;
    padding: 5px;
   /* text-align: center; */
	font-size: 14px;
	text-indent: 20px;
	overflow: hidden;
	white-space: nowrap;
}

/* Custom AI Solutions Section */
.pricing-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(147, 35, 186, 0.15),
                0 20px 60px rgba(147, 35, 186, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 35, 186, 0.2),
                0 25px 80px rgba(147, 35, 186, 0.15);
}

.pricing-banner h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #9323BA, #700097);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.price-range {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    font-size: 1.6rem;
}

.price-tag, .price-description {
    font-size: 1.6rem;
    font-weight: 600;
    color: #9323BA;
}

.package-includes {
    font-size: 1.2rem;
    color: #4a5568;
    margin-top: 1rem;
    font-weight: 500;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    font-size: 1.25rem;
    color: #9323BA;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item h4 i {
    font-size: 1.5rem;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tech-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.demo-intro {
    font-size: 1.1rem;
    color: #2c5282;
    font-weight: 500;
    text-align: center;
    margin: 2rem 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.about-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2c5282;
    margin-bottom: 2rem;
    font-weight: 500;
}

.agentic-link {
    color: #4299e1;
    text-decoration: none;
    border-bottom: 2px solid #4299e1;
    transition: all 0.3s ease;
}

.agentic-link:hover {
    color: #2b6cb0;
    border-bottom-color: #2b6cb0;
}

.about-main {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.value-prop {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.2rem;
    color: #2c5282;
    padding: 1rem;
    background: #ebf8ff;
    border-left: 4px solid #4299e1;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.about-conclusion {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2d3748;
    text-align: center;
    margin-top: 1.5rem;
}

/* Other Service Items */
.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

/* Contact form */
#contact form {
    max-width: 500px;
    margin: auto;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box; /* Ensures padding does not affect width */
}

#contact button {
    background: #9323BA;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#contact button:hover {
    background: #004d75;
}

/* Footer styling */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .navigation, nav .logo img {
        margin: 0;
    }

    nav .navigation {
        flex-direction: column;
        align-items: center;
    }

    nav .navigation a {
        margin: 10px 0;
    }

    section {
        padding: 2rem 1rem;
    }
    
    .price-range {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    header::before {
        width: 150px;
        height: 150px;
        left: 25%;
    }
}

.chatbot-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.main-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.highlight {
    color: #2c5282;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9323BA;
    font-weight: bold;
}

.video-showcase {
    margin-top: 4rem;
    padding: 0 2rem;
}

.video-showcase h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.demo-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demo-description {
    padding: 1rem;
}

.demo-description h4 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.demo-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 768px) {
    .demo-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-showcase {
        padding: 0 1rem;
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.solution-card {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 35, 186, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(147, 35, 186, 0.2);
    border-color: rgba(147, 35, 186, 0.3);
}

.solution-card i {
    font-size: 2.5rem;
    color: #9323BA;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9323BA, #700097);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-card h4 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.solution-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
}

@keyframes gradient-wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes circle-move {
    0% {
        left: 28%;
    }
    50% {
        left: 38%;
    }
    100% {
        left: 28%;
    }
}