.navbarMainContent .navbar-nav li:first-child {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 400;
}

#banner {
    background: linear-gradient(135deg, #e6f7ff 0%, #fff0f5 50%, #e0ffff 100%);
}

.sticky-top {
    z-index: 3;
}

.banner-title {
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-subtitle {
    color: #2d78d6;
    margin-bottom: 30px;
}

.banner-desc {
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 900px;
}

.banner-support {
    color: #555555;
    margin-bottom: 40px;
}

.banner-check {
    margin-right: 5px;
}

/* AI Section Styles */
.ai-section-title {
    background: -webkit-linear-gradient(45deg, #2d78d6, #00c0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.ai-desc {
    font-size: 1.15rem;
    line-height: 1.6;
}

.ai-feature-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}

.ai-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
}

.ai-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #00c0ff;
}

.ai-check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #e6f7ff;
    color: #0084ff;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.ai-image-container img {
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); Removed, moved to wrapper */
    /* transition: transform 0.3s ease; Removed, moved to wrapper */
    width: 100%;
    height: auto;
}

.step-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.step-image-wrapper:hover {
    transform: scale(1.02);
}

/* Steps Section Styles */
.step-item {
    margin-bottom: 24px;
    padding: 24px 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
}



.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #b3d7ff;
}

.step-item.active {
    border-color: #2d78d6;
    background-color: #f0f7ff;
    box-shadow: 0 10px 15px -3px rgba(45, 120, 214, 0.15), 0 4px 6px -2px rgba(45, 120, 214, 0.08);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d1d5db;
    /* Light gray */
    margin-right: 24px;
    line-height: 1;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: -2px;
}

.step-item.active .step-number {
    color: #2d78d6;
}

.step-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
    color: #1f2937;
    transition: color 0.3s ease;
}

.step-item.active .step-title {
    color: #1e3a8a;
    /* Darker blue */
}

.steps-section-title {
    color: #111;
}

.step-img-dynamic {
    border-radius: 20px;
    display: block;
    width: 100%;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.gap-20 {
    gap: 20px;
}

.bg-ai {
    background-color: #f9fbfd;
}

.bg-white {
    background-color: #fff;
}

/* Features Section Styles */
.features-section-title {
    color: #111;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 65px;
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Individual Gradients (Light/Pastel) */
.feature-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #fff4d6 0%, #ffe8a8 100%);
}

.feature-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, #d6d3ff 0%, #b8b3ff 100%);
}

.feature-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, #ffc9dd 0%, #ffb3d1 100%);
}

.feature-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, #c7e2ff 0%, #a8d5ff 100%);
}

.feature-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, #c2f5e9 0%, #a0f0d7 100%);
}

.feature-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #ffd9cc 0%, #ffc4b3 100%);
}

.feature-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #d1f5f5 0%, #b3f0ef 100%);
}

.feature-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #f0f3f5 0%, #dfe4e8 100%);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.feature-item:nth-child(8) .feature-icon {
    order: 2;
    margin-bottom: 0;
    margin-left: 20px;
    flex-shrink: 0;
}

.feature-item:nth-child(8)>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.feature-item:nth-child(8)>div>div:first-child {
    flex: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.feature-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* Icon Colors */
.icon-orange {
    stroke: #e67e22;
}

.icon-purple {
    stroke: #8e44ad;
}

.icon-pink {
    stroke: #d33382;
}

.icon-blue {
    stroke: #2980b9;
}

.icon-green {
    stroke: #27ae60;
}

.icon-peach {
    stroke: #e17055;
}

.icon-cyan {
    stroke: #009797;
}

.icon-gray {
    stroke: #7f8c8d;
}

.icon-fill-peach {
    fill: #e17055;
}

.icon-fill-cyan {
    fill: #009797;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item ul li {
    padding: 4px 0;
    color: #34495e;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    /* Increased to fix overlap */
}

.feature-item:nth-child(8) ul li {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 0.85rem;
}

.feature-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1rem;
}

/* Why You Need Section Styles */
.why-need-section {
    background: #fff;
}

.why-need-title {
    color: #111;
}

.why-need-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.feature-detail {
    margin-bottom: 50px;
    padding: 40px 0;
    background: #f9fbfd;
    border-radius: 16px;
    border-left: 4px solid #2d78d6;
    border-right: none;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.feature-detail:last-of-type {
    margin-bottom: 0;
}

.feature-detail-content {
    flex: 1;
    padding: 30px;
}

.feature-detail-image {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-detail-image img {
    width: 60%;
    height: auto;
    display: block;
    border-radius: 36px !important;
    transition: transform 0.3s ease;
}

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

/* Alternate layout: even cards have image on left, text on right */


.feature-detail h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d78d6;
    margin-bottom: 16px;
}

.feature-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

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

    .feature-detail-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

/* Advanced Maintenance Section */
.advanced-maintenance-section {
    background-color: transparent;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.maintenance-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.maintenance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.maintenance-item.blue-card {
    background: rgba(33, 150, 243, 0.05);
    border-color: rgba(33, 150, 243, 0.1);
}

.maintenance-item.blue-card:hover {
    background: rgba(33, 150, 243, 0.1);
}

.maintenance-item.red-card {
    background: rgba(244, 67, 54, 0.05);
    border-color: rgba(244, 67, 54, 0.1);
}

.maintenance-item.red-card:hover {
    background: rgba(244, 67, 54, 0.1);
}

.maintenance-item.purple-card {
    background: rgba(156, 39, 176, 0.05);
    border-color: rgba(156, 39, 176, 0.1);
}

.maintenance-item.purple-card:hover {
    background: rgba(156, 39, 176, 0.1);
}

.maintenance-item.teal-card {
    background: rgba(0, 150, 136, 0.05);
    border-color: rgba(0, 150, 136, 0.1);
}

.maintenance-item.teal-card:hover {
    background: rgba(0, 150, 136, 0.1);
}

.maintenance-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.maintenance-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.maintenance-item p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

.maintenance-detail-wrapper {
    display: block;
}

@media (max-width: 992px) {
    .maintenance-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
    }
}

.bg-soft-blue {
    background: rgba(33, 150, 243, 0.1);
}

.bg-soft-red {
    background: rgba(244, 67, 54, 0.1);
}

.bg-soft-purple {
    background: rgba(156, 39, 176, 0.1);
}

.bg-soft-teal {
    background: rgba(0, 150, 136, 0.1);
}

/* Tech Specifications Section */
.tech-specs-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.specs-container {
    max-width: 900px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.spec-item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 700;
}

.spec-item p {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #007bff;
}

.quote-icon {
    font-size: 40px;
    color: rgba(0, 123, 255, 0.15);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 18px;
}

.user-info {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-details h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
}

.user-details span {
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0076FF 0%, #00C6FF 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: white;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white-outline:hover {
    background: white;
    color: #0076FF;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-solid {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border: 2px solid white;
    border-radius: 50px;
    color: #0076FF;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white-solid:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #0076FF;
}

@media (max-width: 576px) {
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Alternate layout: even cards have image on left, text on right */
.feature-detail:nth-of-type(even) {
    flex-direction: row-reverse !important;
    border-left: 0 !important;
    border-right: 4px solid #2d78d6 !important;
}