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

:root {
    --primary-orange: #F57C3B;
    --dark-blue: #052f4f;
    --mid-blue: #0a4d7a;
    --dark-gray: #2C2C2C;
    --text-gray: #4a5565;
    --light-gray: #F3F4F6;
    --border-gray: #E5E7EB;
    --green: #00a63e;
    --purple: #7c3aed;
}



.container {
    max-width: 1211px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navigation {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1211px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: #e06b2a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

.btn-secondary:hover {
    background: var(--dark-blue);
    color: white;
}

/* .contact-centers{
	position: relative;
	top: -70px;
} */
/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, var(--mid-blue) 0%, var(--dark-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    padding: 80px 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 77, 122, 0.9) 0%, rgba(5, 47, 79, 0.95) 100%);
}

.hero-container {
    max-width: 1211px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 26px;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 617px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-orange);
    padding: 9px 21px;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    margin-bottom: 34px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 72.4px;
    margin-bottom: 16px;
    letter-spacing: -1.28px;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-title .white-text {
    color: white;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 36px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 33px;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
}

.btn-hero-primary {
    background: var(--primary-orange);
    color: white;
    border: none;
    box-shadow: 0px 20px 25px -5px rgba(0,0,0,0.1), 0px 8px 10px -6px rgba(0,0,0,0.1);
}

.btn-hero-primary:hover {
    background: #e06b2a;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: white;
    color: var(--dark-blue);
    border: none;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -4px rgba(0,0,0,0.1);
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-orange);
    font-weight: bold;
    margin-bottom: 0;
    line-height: 48px;
}

.stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-image {
    flex-shrink: 0;
    width: 568px;
    height: 590px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Human-Led Section */
.human-led-section {
    padding: 80px 0;
    background: white;
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

#humanled{
    font-size: 48px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 70px;
    line-height: 1.2;
    text-align: center;
}
 .highlight {
    color: var(--primary-orange);
}

.section-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 34px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.checklist-item svg {
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.checklist-item p {
    font-size: 16px;
    color: var(--text-gray);
}

.info-card-dark {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--mid-blue) 100%);
    border-radius: 16px;
    padding: 48px;
    color: white;
}

.info-card-dark h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
	color: white;
}

.feature-list-dark {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item-dark {
    display: flex;
    gap: 16px;
    align-items: start;
}

.feature-item-dark svg {
    flex-shrink: 0;
}

.feature-item-dark h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.feature-item-dark p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-header .highlight {
    color: var(--primary-orange);
}

.section-header p {
    font-size: 20px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid var(--border-gray);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon.bg-blue {
    background: var(--dark-blue);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 26px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.use-case-card {
    background: white;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid var(--border-gray);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.use-case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.use-case-title {
    display: flex;
    gap: 16px;
    align-items: center;
}

.use-case-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
	background: var(--dark-blue);
}

.use-case-icon.green {
    background: var(--green);
}

.use-case-icon.orange {
    background: var(--primary-orange);
}

.use-case-icon.blue {
    background: #3b82f6;
}

.use-case-icon.purple {
    background: var(--purple);
}

.use-case-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
}

.use-case-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: white;
	background: var(--dark-blue);
}

.green-badge {
    background: var(--green);
}

.orange-badge {
    background: var(--primary-orange);
}

.blue-badge {
    background: #3b82f6;
}

.purple-badge {
    background: var(--purple);
}

.use-case-description {
    font-size: 16px;
    color: #364153;
    line-height: 24px;
    margin-bottom: 20px;
}

.use-case-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.use-case-feature {
    display: flex;
    gap: 8px;
    align-items: center;
}

.use-case-feature svg {
    flex-shrink: 0;
}

.use-case-feature span {
    font-size: 14px;
    color: var(--text-gray);
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.integration-row {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 30px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .integration-new-home-card {
            display: flex;
            align-items: center;
            background: #f5eefd;
            border-radius: 14px;
            padding: 18px 18px;
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.02);
            min-width: 220px;
            gap: 16px;
            position: relative;
            cursor: pointer;
        }

        .integration-logo {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #fff;
        }

        .integration-title {
            font-size: 1.13rem;
            font-weight: 600;
            color: #231452;
        }

        .integration-type {
            font-size: 0.9rem;
            color: #8c7aac;
        }

        .integration-arrow {
            font-size: 1.3rem;
            color: #c6b1de;
            margin-left: auto;
        }

        .integration-btn {
            margin: 30px auto;
            background: #8000C7;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 16px 32px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 12px rgba(118, 26, 236, 0.2);
            cursor: pointer;
        }

        .integration-logos-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 22px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .integration-small-logo {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: #fff;
        }

        @media (max-width: 700px) {

            .integration-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .integration-new-home-card {
                padding: 10px;
                min-width: 180px;
                gap: 5px;
            }
        }

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid var(--border-gray);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
}

.stars {
    color: var(--primary-orange);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 24px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--dark-blue);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 24px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--mid-blue) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}
.cta-content-heading{
	color: white !important;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary, .btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.btn-cta-primary {
    background: var(--primary-orange);
    color: white;
    border: none;
}

.btn-cta-primary:hover {
    background: #e06b2a;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: white;
    color: var(--dark-blue);
    border: none;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: bold;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
}

.social-links a:hover {
    background: var(--primary-orange);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-image {
        width: 100%;
        max-width: 568px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.2;
    }

    .section-header h2, .section-left h2, .cta-content h2 {
        font-size: 36px;
    }

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .use-case-features {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
