:root {
    --card-light: #1e293b;
    /* dark slate blue-ish background for cards */
    --card-border: #334155;
    /* darker border */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    /* stronger shadow for dark bg */
    --blue: #38bdf8;
    /* keep same sky blue */
    --orange: #f97316;
    /* keep same orange */
    --text-dark: #e5e7eb;
    /* light text color on dark background */
    --text-muted-light: #94a3b8;
    /* lighter muted text */
    --background: #0f172a;
    /* page background */
}

/* Row with gutters */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    /* half of gutter */
    margin-right: -12px;
    /* half of gutter */
}

/* Gap 4 (1.5rem = 24px) */
.g-4 {
    padding-left: 12px;
    /* half gutter */
    padding-right: 12px;
    /* half gutter */
    margin-bottom: 24px;
    /* vertical gutter */
}

.tc {
    text-align: center;
}

.mt-5 {
    margin-top: 50px;
}

/* Column: width 33.333% on medium screens and above */
.col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    box-sizing: border-box;
    padding-left: 12px;
    /* match gutter padding */
    padding-right: 12px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding-left: 12px;
    /* same gutter padding */
    padding-right: 12px;
}

/* Responsive breakpoint for md (medium) - adjust as needed */
@media (max-width: 767.98px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Responsive breakpoint for md (medium) - adjust as needed */
@media (max-width: 767.98px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.features-section,
.how-it-works,
.formats-section {
    background: var(--background);
    color: var(--text-dark);
    margin-top: 40px;
}

.features-section .section-title,
.how-it-works .section-title,
.formats-section .section-title {
    color: var(--text-dark);
    text-align: center;
}

.feature-card {
    background: var(--card-light);
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: all 0.25s ease;
    color: var(--text-dark);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: rgb(3, 130, 189);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* 
.feature-icon i {
    color: var(--blue);
    font-size: 18px;
} */

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-muted-light);
}

.step-card {
    background: var(--card-light);
    border-radius: 14px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    padding: 22px;
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.step-number {
    width: 36px;
    height: 36px;
    background: rgba(56, 189, 248, 0.15);
    color: var(--blue);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted-light);
}

.format-badge {
    display: inline-block;
    background: var(--card-light);
    border: 1px solid var(--card-border);
    color: var(--text-dark);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    margin: 6px;
    box-shadow: var(--card-shadow);
}

.list-group-item {
    background: var(--card-light);
    border-radius: 14px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    padding: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.list-group-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.list-group-item p {
    font-size: 13px;
    color: var(--text-muted-light);
}

@media (max-width: 768px) {

    .feature-card,
    .step-card,
    .list-group-item {
        padding: 18px;
    }

    .step-card {
        flex-direction: column;
    }
}


/* Footer base */
.footer {
    background: #0f172a;
    /* dark bg consistent with your site */
    color: #e5e7eb;
    /* light text */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Container max-width and center */
.footer .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid row (flexbox) */
.footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

/* Columns */
.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-lg-2,
.footer .col-md-6 {
    box-sizing: border-box;
    padding: 0 12px;
    flex: 1 1 100%;
    /* Default full width on small screens */
}

/* Responsive widths on larger screens */
@media (min-width: 768px) {
    .footer .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .footer .col-lg-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .footer .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .footer .col-lg-2 {
        flex: 0 0 16.6667%;
        max-width: 16.6667%;
    }
}

/* Footer titles */
.footer-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    color: #38bdf8;
    /* sky blue accent */
}

/* Paragraph in about section */
.footer p {
    line-height: 1.6;
    color: #cbd5e1;
    /* lighter muted text */
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #f97316;
    /* orange accent on hover */
}

/* Social links list */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

.social-links li a {
    color: #e5e7eb;
    font-size: 18px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links li a:hover {
    color: #38bdf8;
    /* sky blue on hover */
}

/* Bottom copyright */
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 13px;
    color: #64748b;
    /* muted text */
    text-align: center;
}

/* Margin bottom utilities for spacing */
.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-md-0 {
    margin-bottom: 0 !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

/* CTA */

.cta-section {
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 34px;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 28px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(90deg, #38bdf8, #f97316);
    color: #020617;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

.faq-section {
    padding: 70px 0;
    background: #020617;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 35px;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-border-radius: 10px;
    --bs-accordion-btn-focus-box-shadow: none;
}


/* Accordion */
.accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: #f97316;
    color: #e5e7eb;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 22px;
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    color: #38bdf8;
    background: transparent;
    box-shadow: none;
}


.accordion-button::after {
    filter: invert(1);
}

.accordion-button:hover {
    background: #38bdf8;
}


.accordion-body {
    color: #cbd5f5;
    font-size: 15px;
    line-height: 1.7;
    padding: 16px 22px 20px;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 15px;
        padding: 16px 18px;
    }

    .accordion-body {
        padding: 14px 18px 18px;
    }
}


.features-services-section {
    background: #0f172a;
}

.feature-card {
    background: #020617;
    padding: 26px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.feature-card h2,
.feature-card h3 {
    color: #e5e7eb;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card i {
    color: #38bdf8;
}

#specific-p,
.feature-card .content {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

.feature-card a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 500;
}

.feature-card a:hover {
    text-decoration: underline;
}

.http {
    color: #f97316;
    font-weight: 600;
}

.https {
    color: #22c55e;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-section,
    .faq-section {
        padding: 60px 20px;
    }
}