/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container a {
    cursor: pointer;
}

.logo {
    height: 41px;
    width: auto;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links.open {
    transform: translateY(0); /* Show when open */
    visibility: visible; /* Make it visible */
}

.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 18px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Base Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Content width for text sections */
.what-is-grid,
.embrace-content,
.embrace-header,
.ai-section.bg-light .content {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.ai-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.ai-hero .container {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ai-hero-content {
    z-index: 2;
    padding: 48px 0;
}

.ai-hero-content h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-hero-subtitle {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 600px;
    margin-top: 0;
}

.ai-hero-video {
    position: relative;
    height: 100%;
}

.ai-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overview Section */
.ai-overview {
    /* padding: 120px 0; */
    background: #fff;
    color: #000;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ai-text-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.ai-text-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

/* Features Section */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-4px);
    border: 1px solid var(--accent-color);
}

.ai-feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.ai-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.ai-cta {
    background-color: #ffffff;
    color: #000000;
    padding: var(--spacing-section) 0;
}

.ai-cta .container {
    text-align: center;
}

.ai-cta-title {
    color: #000000;
    margin-bottom: 24px;
}

.ai-cta-text {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto ;
}
.ai-cta-tagline {
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 32px;
}

.ai-cta .btn {
    background-color: #000000;
    color: #ffffff;
}

.ai-cta .btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

@media (max-width: 768px) {
    .ai-cta .cta-text {
        font-size: 16px;
        padding: 0 24px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-hero .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ai-hero-content {
        padding: 24px 0;
    }

    .ai-hero-video {
        height: 300px;
        width: 100%;
    }

    .ai-hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ai-hero-video-section {
        height: 40vh;
    }

    .ai-hero-content h1 {
        font-size: 28px;
    }

    .ai-hero-subtitle {
        font-size: 14px;
    }

    .ai-grid {
        grid-template-columns: 1fr;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: #000000;
        padding: 20px;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links.open {
        display: flex;
    }
}

/* Hero Video Section */
.ai-hero-video-section {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
}

.full-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title Section */
.ai-title-section {
    /* padding: 80px 0; */
    background: var(--bg-dark);
    text-align: center;
}

.ai-title-section h1 {
    font-size: 48px;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

/* Content Sections */
/* .ai-section {
    padding: 100px 0;
} */

.ai-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.ai-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

/* Cards */
.ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.ai-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}


.ai-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

/* Pillars */
.ai-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.ai-pillar {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ai-pillar:hover {
    transform: translateY(-4px);
    border: 1px solid var(--accent-color);
}

.ai-pillar h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #fff;
}

/* General Text Styles */
.ai-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

/* Background Colors */
.bg-dark {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.bg-light {
    background: var(--bg-light);
    color: var(--text-primary);
}

.bg-black {
    background: #000;
    color: var(--text-primary);
}

.ai-section.bg-light {
    background: #ffffff;
    color: #000000;
    padding: var(--spacing-section) 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ai-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-title-section h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .ai-hero-video-section {
        height: 60vh;
    }

    .ai-cards, .ai-pillars {
        grid-template-columns: 1fr;
    }

    .ai-title-section h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 20px;
    }

    .ai-section {
        padding: 60px 0;
    }

    .ai-section h2 {
        font-size: 28px;
    }

    .what-is-content h2,
    .what-is-title {
        font-size: 26px;
    }

    .ai-section.bg-light h2 {
        font-size: 26px;
    }

    .accordion-trigger span {
        font-size: 16px;
    }

    .embrace-header h2 {
        font-size: 26px;
    }

    .embrace-pillar h3 {
        font-size: 18px;
    }

    .embrace-pillar p,
    .embrace-pillar li,
    .accordion-content p,
    .what-is-content p {
        font-size: 14px;
    }
}

/* Animations */
.ai-card, .ai-pillar {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure animations play in sequence */
.ai-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-card:nth-child(3) {
    animation-delay: 0.4s;
}

.ai-pillar:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-pillar:nth-child(3) {
    animation-delay: 0.4s;
}

.ai-pillar:nth-child(4) {
    animation-delay: 0.6s;
}

.ai-pillar:nth-child(5) {
    animation-delay: 0.8s;
}

.ai-hero-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-dark);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-video {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.what-is-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-section) 0;
}

.what-is-content {
    text-align: left;
    margin-bottom: 64px;
}

.what-is-content h2,
.what-is-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
    text-align: center;
}

.what-is-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 24px;
    text-align: left;
}

.what-is-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.ai-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-inner {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ai-card h3 {
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.ai-card p {
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .what-is-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 6rem;
    }
    
    .what-is-content {
        position: sticky;
        top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-video {
        max-height: 300px;
    }
    
    .what-is-content {
        text-align: center;
    }
    
    .what-is-cards {
        grid-template-columns: 1fr;
    }
}

.accordion {
    margin-top: 48px;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-trigger {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-trigger span {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.accordion-trigger .icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}
.last-text{
    margin-top: 50px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 24px;
    line-height: 1.6;
    color: #000000;
    font-size: 16px;
}

.accordion-item.active .accordion-trigger .icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

@media (max-width: 768px) {
    .what-is-grid {
        padding: var(--spacing-section) 24px;
    }

    .what-is-content {
        margin-bottom: 48px;
    }

    .accordion-trigger span {
        font-size: 16px;
    }
}

.ai-embrace-section {
    padding: var(--spacing-section) 0;
    background: var(--bg-dark);
}

.embrace-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.embrace-header h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #fff;
}

.embrace-header p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.embrace-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
}

.embrace-pillar {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

/* .embrace-pillar:hover {
    transform: translateY(-4px);
    border: 1px solid var(--accent-color);
} */

.embrace-pillar h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    align-items: center;
}

.embrace-pillar h3::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--accent-color);
    margin-right: 16px;
    border-radius: 2px;
}

.embrace-pillar p {
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.embrace-pillar p:last-child {
    margin-bottom: 0;
}

.embrace-pillar ul {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.embrace-pillar li {
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.embrace-pillar li:last-child {
    margin-bottom: 0;
}

.embrace-pillar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .embrace-header {
        margin-bottom: 48px;
        padding: 0 24px;
    }

    .embrace-content {
        padding: 0 24px;
        gap: 32px;
    }

    .embrace-pillar {
        padding: 24px;
    }

    .embrace-pillar h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .embrace-pillar h3::before {
        height: 20px;
        margin-right: 12px;
    }
}


.ai-section.bg-dark,
.ai-embrace-section {
    color: var(--text-primary);
}

.ai-section.bg-dark p,
.ai-embrace-section p,
.embrace-pillar p,
.embrace-pillar li {
    color: #FFFFFF;
}


.ai-section,
.ai-embrace-section {
    padding: var(--spacing-section) 0;
}


.ai-content,
.embrace-content {
    max-width: 800px;
    margin: 0 auto;
}


.ai-section h2,
.embrace-header h2,
.ai-title-section h1 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #fff;
}

.embrace-pillar ul {
    list-style: none;
    padding-left: 24px;
}

.embrace-pillar li::before {
    color: #fff;
}

/* Why Africa Section */
.ai-section.bg-light {
    background: #ffffff;
    color: #000000;
    padding: var(--spacing-section) 0;
}

.ai-section.bg-light h2 {
    color: #000;
    text-align: center;
    margin-bottom: 24px;
}

.ai-section.bg-light .lead-text {
    margin-top: 0;
    margin-bottom: 24px;
}

.ai-section.bg-light p {
    color: #000000;
    margin-bottom: 24px;
}

.ai-section.bg-light p:last-child {
    margin-bottom: 0;
}


.full-site-coming-soon{
    text-align: center;
    margin-top: 100px;
    color: #000;
    font-size: 25px;
  }
/* Call to Action Section */
.cta-section {
    padding: 40px 0; /* Add some padding */
    background-color: #f8f8f8; /* Light background for contrast */
    text-align: center; /* Center the text */
}

.cta-text {
    font-size: 36px; /* Large font size */
    font-weight: bold; /* Bold text */
    color: #000; /* Text color */
    margin: 0; /* Remove default margin */
}

/* Update text colors */
.ai-hero-subtitle,
.lead-text,
.ai-section.bg-dark p,
.embrace-pillar p,
.embrace-pillar li,
.card-text {
  color: #FFFFFF;
}

.ai-section.bg-light p,
.what-is-content p,
.accordion-content p,
.ai-cta-text,
.ai-cta-tagline {
  color: #000000;
}

/* Remove any rgba colors */
.edge-text {
  color: #FFFFFF;
}

.why-text {
  color: #000000;
} 