/* Project SEED Custom Styles */
:root {
    --primary-blue: #032f5e;
    --text-black: #000000;
    --text-grey: #6b7280;
    --accent-green: #119142;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

.seed-section {
    padding: 60px 0;
}

.seed-section-bg {
    background-color: var(--bg-light);
}

.seed-title {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Hero Section */
.hero-seed {
    background:url(../images/banner-bg.jpg) no-repeat;
	background-size: cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-seed .headline {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-seed .subheading {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-seed h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.hero-seed .description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.sub-main:hover ~ .submenu-1, li{display: flex !important; align-items: baseline;}

.hero-seed .btn-seed {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 10px 10px;
    border-radius: 30px;
    font-weight: 700; margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-seed a.btn-seed { font-size:14px;}
.hero-seed .btn-seed:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Infographic Grid */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .infographic-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.info-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.info-item p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.highlight-box {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.highlight-box h4 {
    font-size: 20px;
    font-weight: 400;
}

/* Cards */
.card-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

@media (min-width: 992px) {
    .card-grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

.seed-card {
    background: var(--white);
    padding: 13px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
}

.seed-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.seed-card i {
    margin: 0 10px;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Timeline */

.timeline-phase {
    display: flex;
    align-items: flex-start;
}

p:last-child {
    font-size: 16px;
}

.phase-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
}

.phase-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.phase-content h3 {
    font-size: 18px;
}

.phase-content p {
    font-size: 16px;
}

ul.list-unstyled {
    text-align: left;
    font-size: 15px;
}

/* Checklist */
.checklist-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-grey);
}

.checklist-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-icon i {
    font-size: 14px;
    color: var(--primary-blue);
}

.partner-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 0 50%;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .partner-image {
        border-radius: 20px;
        margin-top: 40px;
    }
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 185px;

}

.pricing-card:hover {
    border-color: var(--primary-blue);
}

.pricing-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Final CTA Section */
.seed-cta {
    background-color: #000;
    color: white;
    padding: 60px 0;
}

.seed-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.seed-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
   align-items: self-start;
}

.btn-pill {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-pill-green {
    background-color: #8cc63f;
    color: white;
    border: none;
}

.btn-pill-green:hover {
    background-color: #7ab334;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 198, 63, 0.4);
}

.btn-pill-outline {
    background-color: transparent;
    color: white !important;
    border: 2px solid white;
}

.btn-pill-outline:hover {
    background-color: white;
    color: #032f5e !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cta-buttons {
        align-items: flex-start;
        margin-top: 30px;
    }
}

/* Stats */
.stats-counter {
    background:url(../images/ecosystem.jpg) no-repeat;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
	background-size:cover;
}

.stat-item h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.row-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.row-section:hover {
    background: #f0f7ff;
}

.row-section:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hero-seed h1 {
        font-size: 2rem;
    }

    .timeline-phase {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .phase-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}