@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

.bn-hero-section {
    --bg-color: #1a1599;
    --accent-color: #d4ff4d;
    --text-white: #ffffff;
    
    background-color: var(--bg-color);
    background-image: radial-gradient(circle, #2a22cc 0%, #1a1599 70%);
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 80px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bn-container {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Big Background Text */
.bn-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 22rem);
    font-weight: 900;
    color: var(--accent-color);
    line-height: 0.8;
    text-align: center;
    z-index: 1;
    margin: 0;
    pointer-events: none;
    letter-spacing: -5px;
}

/* Left Content */
.bn-left-content {
    color: var(--text-white);
}

.bn-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 250px;
    opacity: 0.9;
}

.bn-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.bn-btn:hover {
    transform: scale(1.05);
}

/* Center Card */
.bn-center-content {
    display: flex;
    justify-content: center;
    width: 100%;
}

.bn-dashboard-frame {
    width: 100%;
    max-width: 820px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 26px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    overflow: hidden;
}

.bn-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.bn-card {
    width: 320px;
    height: 500px;
    background: #000;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.1);
}

.bn-card-header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-size: 14px;
    z-index: 3;
}

.bn-active-tab {
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    font-weight: bold;
}

.bn-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.bn-user-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    border: 3px solid #fff;
}

/* Right Content Stats */
.bn-right-content {
    color: var(--text-white);
    text-align: right;
}

.bn-stat-item {
    margin-bottom: 40px;
}

.bn-stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
}

.bn-stat-label {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .bn-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bn-left-content, .bn-right-content {
        text-align: center;
    }
    .bn-left-content { order: 2; }
    .bn-center-content { order: 1; }
    .bn-right-content { order: 3; }
    .bn-description { max-width: 100%; }
    .bn-bg-text { font-size: 15vw; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

.amlm-about-services {
    --bg-lime: #d4ff4d;
    --primary-blue: #1a1599;
    --text-dark: #1a1599;
    
    background-color: var(--bg-lime);
    color: var(--primary-blue);
    font-family: 'Inter', sans-serif;
    padding: 100px 5%;
    overflow: hidden;
}

.amlm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.amlm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

/* Small Sidebar Tags */
.amlm-small-tag {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 20px;
}

/* Headings */
.amlm-main-heading {
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.85;
    margin: 0;
    letter-spacing: -2px;
}

.amlm-heading-right {
    text-align: right;
}

/* Buttons */
.amlm-pill-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 1.5px solid var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.amlm-pill-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-lime);
}

/* Text Content */
.amlm-description {
    max-width: 400px;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.amlm-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
}

/* Image Section */
.amlm-row-mid {
    grid-template-columns: 1.2fr 0.8fr;
    margin: 40px 0;
}

.amlm-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

.amlm-feature-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(26, 21, 153, 0.2);
    display: block;
}

.amlm-img-blob {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: #ff9d00; /* Orange accent from the image */
    border-radius: 50%;
    z-index: -1;
}

/* Bottom Row specific adjustment */
.amlm-row-bottom {
    align-items: flex-end;
}

.amlm-col-bottom-left {
    padding-bottom: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .amlm-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amlm-col-right, .amlm-col-bottom-right {
        text-align: left;
        padding-top: 20px;
    }
    
    .amlm-heading-right {
        text-align: left;
    }

    .amlm-image-wrapper {
        max-width: 100%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

.ap-software-showcase {
    --blue-bg: #1a1599;
    --lime-bg: #d4ff4d;
    --text-white: #ffffff;
    --text-dark: #1a1599;

    position: relative;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background Logic */
.ap-top-bg {
    background-color: var(--blue-bg);
    height: 70vh;
    padding: 80px 8%;
}

.ap-bottom-bg {
    background-color: var(--lime-bg);
    height: 30vh;
}

/* Header Content */
.ap-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.ap-main-title {
    color: var(--lime-bg);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 30px 0;
    letter-spacing: -3px;
}

.ap-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.ap-btn-outline:hover {
    background: var(--lime-bg);
    color: var(--text-dark);
    border-color: var(--lime-bg);
}

.ap-info-area {
    max-width: 320px;
    color: var(--text-white);
    text-align: right;
    padding-top: 10px;
}

.ap-small-label {
    display: block;
    margin-bottom: 40px;
    font-weight: 600;
}

.ap-desc-text {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Cards System */
.ap-cards-wrapper {
    position: absolute;
    bottom: 80px; /* Positions cards to overlap the color split */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    padding: 0 5%;
    z-index: 10;
}

.ap-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.ap-card:hover {
    transform: translateY(-15px);
}

.ap-card-side {
    width: 350px;
    height: 350px;
}

.ap-card-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
}

.ap-card-center {
    width: 100%;
    height: 580px;
    background: #000;
    border: 10px solid #111;
    border-radius: 45px;
}

.ap-card-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 700;
    background: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.ap-app-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(26, 21, 153, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.ap-app-status {
    background: var(--lime-bg);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.8rem;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .ap-header-flex { flex-direction: column; gap: 40px; text-align: left; }
    .ap-info-area { text-align: left; }
    .ap-cards-wrapper { 
        position: relative; 
        bottom: 0; 
        flex-direction: column; 
        align-items: center; 
        padding-top: 50px; 
    }
    .ap-top-bg { height: auto; padding-bottom: 200px; }
    .ap-card-side { width: 90%; height: 250px; }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');

.am-cta-section {
    --bg-blue: #1a1599;
    --neon-lime: #d4ff4d;
    
    background-color: var(--bg-blue);
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.am-cta-container {
    position: relative;
    z-index: 5;
}

.am-cta-title {
    font-family: 'Inter', sans-serif;
    color: var(--neon-lime);
    font-size: clamp(4rem, 15vw, 12rem); /* Fluid typography */
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -5px;
    margin: 0;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

/* Subtle Hover Animation */
.am-cta-title:hover {
    transform: scale(1.02);
}

.am-cta-action {
    margin-top: 40px;
}

.am-cta-subtext {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.am-cta-main-btn {
    display: inline-block;
    background-color: white;
    color: var(--bg-blue);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.am-cta-main-btn:hover {
    background-color: var(--neon-lime);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 255, 77, 0.3);
}

/* Background Radial Glow */
.am-cta-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40%;
    background: radial-gradient(circle, rgba(212, 255, 77, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .am-cta-title {
        letter-spacing: -2px;
    }
    .am-cta-section {
        padding: 80px 20px;
    }
}

/* --- Feature strip (AutoPool) --- */
.ap-feature-strip {
    background: #ffffff;
    padding: 90px 5%;
    font-family: 'Inter', sans-serif;
}

.ap-feature-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ap-feature-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.ap-feature-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: #111;
}

.ap-feature-subtitle {
    margin: 0;
    max-width: 520px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.ap-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ap-feature-card {
    border: 1px solid #eee;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ap-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

.ap-feature-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.ap-feature-card h3 {
    margin: 16px 18px 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
}

.ap-feature-card p {
    margin: 0 18px 18px;
    color: #666;
    line-height: 1.55;
    font-size: 0.98rem;
}

.ap-feature-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.ap-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #1a1599;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ap-feature-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.ap-feature-link {
    color: #1a1599;
    text-decoration: none;
    font-weight: 800;
}

.ap-feature-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .ap-feature-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ap-feature-grid {
        grid-template-columns: 1fr;
    }
    .ap-feature-card img {
        height: 220px;
    }
}
