/* Custom Page Styles for Incluva Foundation */

/* Common Layout Elements */
.section-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 40px 20px;
}

.back-link {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.page-header-block {
    border-left: 4px solid #1d4ed8;
    padding-left: 15px;
    margin-bottom: 35px;
}

.page-header-block h1 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.page-header-block .subtitle {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.page-header-block .desc {
    font-size: 15.5px;
    color: #475569;
    margin: 0;
    max-width: 850px;
    line-height: 1.7;
}

/* Info Box / Banner */
.info-banner-card {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 50px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.info-banner-card h2 {
    font-size: 20px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
}

.info-banner-card p {
    margin: 0;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* Success / Green Alert Banner */
.success-banner-card {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.success-banner-card .icon {
    font-size: 24px;
    color: #16a34a;
}

.success-banner-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #14532d;
    margin: 0 0 5px 0;
}

.success-banner-card p {
    margin: 0;
    font-size: 14px;
    color: #166534;
}

/* Services and Packages Grids */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.pkg-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pkg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pkg-title {
    font-size: 18px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.pkg-price {
    font-size: 22px;
    color: #1d4ed8;
    font-weight: bold;
    margin-bottom: 12px;
}

.pkg-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 10px;
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.pkg-features li {
    margin-bottom: 8px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pkg-features li i {
    color: #057857;
    margin-top: 3px;
}

.pkg-price-badge {
    background-color: #f1f5f9;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.pkg-price-badge span.price {
    font-weight: bold;
    color: #0f172a;
    font-size: 16px;
}

.pkg-price-badge span.detail {
    font-size: 13px;
    color: #64748b;
}

.pkg-footer {
    margin-top: auto;
}

/* Bullet and Benefit Lists */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit-list li {
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list li i {
    color: #1d4ed8;
    font-size: 16px;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-list li {
    font-size: 14.5px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.bullet-list li i {
    color: #1d4ed8;
    margin-top: 3px;
}

/* Homepage Hero & Content Blocks */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 0;
}

.home-about-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.home-about-block {
    max-width: 900px;
    margin: 0 auto;
    border-left: 4px solid #1d4ed8;
    padding-left: 20px;
}

.home-services-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.home-services-block {
    max-width: 1050px;
    margin: 0 auto;
}

.home-services-block h2 {
    font-size: 26px;
    color: #0f172a;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

.home-impact-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.home-impact-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-impact-block h2 {
    font-size: 26px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 40px;
}

.home-involved-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.home-involved-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-involved-block h2 {
    font-size: 26px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}

.home-involved-block p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1d4ed8;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-blue {
    display: inline-block;
    background-color: #1d4ed8;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
}

.btn-dark {
    display: inline-block;
    background-color: #0f172a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
}

/* About Us Page Elements */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.about-desc {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro-card {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.about-intro-card p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.about-intro-card p:last-child {
    margin-bottom: 0;
}

.about-section-heading {
    font-size: 22px;
    color: #0f172a;
    border-bottom: 2px solid #cbd5e1;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-section-para {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

.about-section-para:last-child {
    margin-bottom: 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.vision-mission-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
}

.vision-mission-card h2 {
    font-size: 20px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vision-mission-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.value-card h3 {
    font-size: 16px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.join-journey-block {
    background-color: #f8fafc;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.join-journey-block h2 {
    font-size: 22px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.join-journey-block p.desc {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    text-align: center;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.join-journey-list li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.join-journey-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.join-journey-list li h3 {
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.join-journey-list li p {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.join-journey-list li a {
    font-weight: bold;
    color: #1d4ed8;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
}

.contact-card-icon {
    font-size: 24px;
    color: #1d4ed8;
    margin-top: 3px;
}

.contact-card-content h3 {
    font-size: 17px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 10px 0;
}

.contact-card-content a {
    font-weight: bold;
    color: #1d4ed8;
    text-decoration: none;
    font-size: 14px;
}

/* Donation Page Grid & Cards */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.donation-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.donation-card h2 {
    font-size: 19px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.donation-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

.donation-card p:last-child {
    margin-bottom: 0;
}

/* Services Directory Layout Rules */
.services-dir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dir-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dir-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.dir-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #eff6ff;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.dir-title {
    font-size: 20px;
    color: #0f172a;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

.dir-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dir-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    font-size: 14px;
    color: #64748b;
}

.dir-bullets li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dir-bullets li i {
    color: #1d4ed8;
    font-size: 12px;
}

.dir-link {
    display: block;
    text-align: center;
    background-color: #1d4ed8;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dir-link:hover {
    background-color: #1e40af;
}

/* Sub-page Inquiry Section Header */
.subpage-inquiry-header {
    text-align: center;
    margin-bottom: 20px;
}

.subpage-inquiry-header h2 {
    font-size: 22px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
}

.subpage-inquiry-header p {
    color: #64748b;
    margin: 0 auto;
    font-size: 15.5px;
    max-width: 800px;
    line-height: 1.6;
}

/* Services page extra helper classes */
.dir-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .dir-card-wide {
        grid-template-columns: 1fr 1fr;
    }
}

.model-section {
    margin-bottom: 50px;
    margin-top: 20px;
}

.model-section h2 {
    font-size: 24px;
    color: #0f172a;
    text-align: center;
    margin-bottom: 8px;
    font-weight: bold;
}

.model-section p.subtitle {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin: 0 0 35px 0;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.model-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 25px;
    text-align: center;
}

.model-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 15px auto;
}

.model-card h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #0f172a;
    font-weight: bold;
}

.model-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.why-us-block {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.why-us-block h2 {
    font-size: 22px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.why-us-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.why-us-item strong i {
    color: #1d4ed8;
    margin-right: 6px;
}

.why-us-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Tech Solutions page extra helper classes */
.tech-section-header {
    margin-top: 40px;
    margin-bottom: 15px;
}

.tech-section-header h2 {
    font-size: 24px;
    color: #0f172a;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.tech-section-header p {
    color: #64748b;
    margin: 0;
    font-size: 15px;
}

.tech-note-box {
    font-size: 13px;
    color: #64748b;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 12px;
    border-radius: 4px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.tech-app-software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.tech-app-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tech-app-card h2 {
    font-size: 22px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.tech-app-card p.subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.tech-app-card .app-package {
    margin-bottom: 20px;
    border-left: 3px solid #cbd5e1;
    padding-left: 15px;
}

.tech-app-card .app-package strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
}

.tech-app-card .app-package span {
    font-size: 13px;
    color: #64748b;
    display: block;
    margin-bottom: 5px;
}

.tech-app-card .app-package p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.tech-terms-block {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.tech-terms-block h2 {
    font-size: 20px;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.tech-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.tech-terms-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 5px;
}

.tech-terms-item p {
    margin: 0;
}


