/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-grid {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }

    .principle-flow {
        flex-direction: column;
    }

    /* .flow-arrow {} */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Contact Section */
.contact-section {
    width: 100%;
    height: 80vh;
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Needed for button positioning */
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    margin-bottom: 20px;
    color: white;
}

.contact-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    position: relative;
    /* For button positioning */
}

/* Inputs and Textarea */
.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* Light white border */
    background-color: #0059b3;
    /* Blue inside */
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: white;
}

.contact-container input:focus,
.contact-container textarea:focus {
    border: 2px solid #ffffff;
    /* Bright white on focus */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
}

/* Fixed size for textarea */
.contact-container textarea {
    height: 150px;
    /* Fixed height */
    resize: none;
    /* Disable resize */
}

/* Button */
.contact-container button {
    width: max-content;
    padding: 12px 10px;
    /* slightly bigger for better feel */
    background-color: #ffffff;
    /* white base */
    color: #004080;
    /* text color */
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 3px 2px 10px rgba(255, 255, 255, 0.598);
    /* subtle shadow */
}

/* Hover effect */
.contact-container button:hover {
    background-color: #004080;
    /* button fills with color */
    color: #ffffff;
    /* text turns white */
    transform: translateY(-5px) scale(1.05);
    /* lift + grow slightly */
    box-shadow: 0 15px 15px rgb(255, 255, 255);
    /* deeper shadow */
}

/* Active/Click effect */
.contact-container button:active {
    transform: translateY(-2px) scale(0.98);
    /* small press effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-container button:hover {
    transform: translateY(-2px);
    background-color: #004080;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc, #004080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-weight: 600;
}

.nav-links a:hover {
    color: #0066cc;
}

.cta-button {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    padding: 150px 0 100px;
    box-sizing: border-box;
    height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%230066cc" stop-opacity="0.1"/><stop offset="100%" stop-color="%230066cc" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23g)"/><circle cx="800" cy="300" r="200" fill="url(%23g)"/><circle cx="400" cy="700" r="180" fill="url(%23g)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #004080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    padding: 1rem 2rem;
    border: 2px solid #0066cc;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
}

.btn-secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    display: block;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    padding: 100px 0;
}

.solution-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.unique-approach {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
}

.features-grid {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #004080);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-benefits li:before {
    content: '✓';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Core Principle Section */
.core-principle {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
}

.principle-flow {
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 102, 204, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

.flow-step.highlight {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    transform: scale(1.05);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-step p {
    font-size: 1rem;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 2rem;
    color: #0066cc;
    font-weight: bold;
}

.principle-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-outcome {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-outcome h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.benefit-outcome p {
    color: #0066cc;
    font-weight: 600;
}

.principle-results {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.result-item {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Platform Capabilities Section */
.platform-capabilities {
    padding: 100px 0;
    background: #fff;
}

.capabilities-flow {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.capability-step {
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.capability-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.capability-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #0066cc, #004080);
    border-radius: 0 0 10px 10px;
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.capability-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.capability-step p {
    color: #666;
    line-height: 1.6;
}

/* Audit as a Service Section */
.audit-service {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
}

.audit-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.audit-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.audit-feature {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.audit-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
}

.audit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.audit-feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.audit-feature p {
    color: #666;
    line-height: 1.6;
}

.audit-value-prop {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.value-prop-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.value-prop-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.value-prop-content .btn-primary {
    background: white;
    color: #0066cc;
}

.value-prop-content .btn-primary:hover {
    background: #f8f9fa;
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: #fff;
}

.integrations #integrations {
    scroll-margin-top: 100px;
}

.integration-categories {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 20px));
    gap: 3rem;
    margin: 4rem 0;
    text-align: center;
    justify-content: center; 
    justify-items: center; 
}

.integration-category {
    text-align: center;
}

.integration-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0066cc;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.integration-logo {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.integration-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.integration-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.integration-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fbff, #e6f3ff);
    border-radius: 15px;
}

.integration-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Customer Showcase Section */
.customer-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    overflow: hidden;
}

.customer-scroll {
    margin-top: 3rem;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.customer-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.customer-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    flex-shrink: 0;
}

.customer-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Module Cards Clickable */
.module-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background: #fff;
}

.modules-grid {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.module-card {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0066cc, #004080);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.module-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.module-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.module-features {
    list-style: none;
    margin-bottom: 2rem;
}

.module-features li {
    color: #555;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.module-features li:before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.module-impact {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: auto;
}

.impact-metric {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.modules-integration {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.integration-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.integration-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    font-weight: 500;
    color: #555;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #0066cc;
}

.benefits {
    background: #fff;
    height: 100vh;
    box-sizing: border-box;
}

.benefits-grid {
    padding: 100px 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.benefits-list li:before {
    content: '🚀';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #f8fbff, #e6f3ff);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0066cc;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #666;
    font-weight: 600;
}

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0066cc, #004080);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: white;
    color: #0066cc;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.final-cta .btn-primary:hover {
    background: #f8f9fa;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;

}

.footer-section a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-grid {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .integration-logos {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #e6f3ff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Logo */
.navbar .logo img {
    width: 150px;
    height: auto;
}

/* CTA Button */
.cta-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}
.image-container-small {
    display: flex;
    justify-content: center;   
    align-items: center;       
    margin-top: 1rem;
    width: 100%;              /* full width of parent box */
    padding: 0 1rem;          /* optional horizontal padding */
    box-sizing: border-box;    /* include padding in width */
}

.image-container-small img {
    width: 100%;              /* take full width of container */
    height: auto;             /* maintain aspect ratio */
    max-width: 100%;          /* never overflow container */
    border-radius: 15px;      /* optional rounded corners */
}


