/* Custom styles from Geminidetails.css */
.ai-section h1,
.ai-section h2,
.ai-section h3 {
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.ai-section h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

.ai-section h2 {
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

.ai-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #1a73e8;
    border-radius: 3px;
}

.ai-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.intro-section-custom {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    border-left: 4px solid #1a73e8;
    padding: 2rem;
    border-radius: 12px;
}

.features-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefits-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pricing-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.pricing-plan-custom {
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-custom {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a73e8;
    margin: 1rem 0;
}

.price-desc-custom {
    font-size: 0.9rem;
    color: #777;
    margin-top: -0.5rem;
}

.company-highlights-section {
    background-color: #f0f7ff;
}

.company-highlights-points {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.contact-form-custom {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-group-custom label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-group-custom input,
.form-group-custom textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.submit-button-custom {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: 500;
}

.submit-button-custom:hover {
    background-color: #0d5bba;
    transform: translateY(-2px);
}

.faq-item-custom {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.hover-card-custom {
    position: relative;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.hover-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-card-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hover-card-custom:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .ai-container {
        padding: 1rem;
    }

    .ai-section {
        padding: 1.5rem;
    }

    .features-grid-custom,
    .benefits-grid-custom,
    .pricing-grid-custom,
    .company-highlights-points {
        grid-template-columns: 1fr;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}