/* Application Software Page */

/* ===== HERO ===== */
.gradient-text {
    background: linear-gradient(
        90deg,
        #2D5BFF 0%,
        #9B3FD8 50%,
        #F0468A 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.app-hero-section {
    position: relative;
    padding: 190px 0 70px;
    background:#eaf3ff !important
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: heroBlobFloat ease-in-out infinite;
}

@keyframes heroBlobFloat {
  0%   { transform: translate(0px,   0px); }
  25%  { transform: translate(25px, -20px); }
  50%  { transform: translate(-15px, 25px); }
  75%  { transform: translate(20px,  15px); }
  100% { transform: translate(0px,   0px); }
}
.app-hero-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-hero-content { flex: 1; animation: appFadeUp 0.9s ease both; }
.app-hero-image   { flex: 1; text-align: right; }

.app-hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(59,130,246,0.15);
}

.app-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.1;
}

.app-hero-subtitle {
    color: #031024;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.app-hero-description {
    font-family: 'Jost', sans-serif;
    color: #3e4652;
    font-size: 1.2rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.app-hero-badge {
    background: #e0edff;
    padding: 10px 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #1e40af;
    font-weight: 500;
}

.app-hero-badge .bi {
    font-size: 18px;
    color: #3b82f6;
}

/* ===== LAYOUT ===== */
.app-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.app-section     { padding: 70px 0; background: #ffffff; }
.app-alt-bg      { background: #f4f8ff; }

.app-section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 40px;
}

/* ===== TECHNOLOGIES GRID (5 boxes, one row) ===== */
.app-grid-5 {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.app-grid-5 > * {
    flex: 1 1 0;
    min-width: 0;
}

/* ===== SERVICES GRID (5 boxes, one row) ===== */
.app-grid-services {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.app-grid-services > * {
    flex: 1 1 0;
    min-width: 0;
}

/* ===== SERVICES GRID 3 COLUMNS (with proper gap) ===== */
.app-grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.app-grid-3 > * {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 0;
}

/* ===== PROCESS GRID (6 boxes, one row) ===== */
.app-grid-process {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.app-grid-process > * {
    flex: 1 1 0;
    min-width: 0;
}

/* ===== CARDS ===== */
.app-card {
    background: #ffffff;
    border: 1px solid #828487;
    padding: 24px 20px;
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.1);
    border-color: #93c5fd;
}

.app-card h3 {
    font-size: 16px;
    font-weight: 400;
    color: #040608;
    margin: 12px 0 8px;
}

.app-card p {
    font-size: 1.2rem;
    color: #363d46;
    line-height: 1.6;
    margin: 0;
}

/* ===== ICON BOX ===== */
.app-icon-box {
    width: 50px;
    height: 50px;
    background: #e0edff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.app-icon-box .bi {
    font-size: 22px;
    color: #3b82f6;
    line-height: 1;
}

/* ===== TAGS ===== */
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.app-tags span {
    background: #e6f0ff;
    color: #3b82f6;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* ===== TYPE CARD ===== */
.app-type-card {
    background: #ffffff;
    border: 1px solid #8f9194;
    padding: 24px 20px;
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.app-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.1);
}

.app-type-num {
    font-size: 32px;
    font-weight: 800;
    color: #bfdbfe;
    line-height: 1;
    margin-bottom: 12px;
}

.app-type-card h3 {
    font-size: 16px;
    font-weight: 400;
    color: #1e293b;
    margin: 10px 0 6px;
}

.app-type-card p {
    font-size: 1.2rem;
    color: #0765e9;
    line-height: 1.6;
    margin: 0;
}

/* ===== KEY FEATURES ROW ===== */
.app-features-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    
}

.app-feature-item {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #828487;
    padding: 10px 15px;
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.app-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.12);
    border-color: #93c5fd;
}

.app-feature-item h3 {
    font-size: 16px;
    font-weight: 400;
    color: #0c1420;
    margin: 12px 0 8px;
}

.app-feature-item p {
    font-size: 1.2rem;
    color: #222428;
    line-height: 1.6;
    margin: 0;
}

.app-feature-icon-box {
    width: 50px;
    height: 50px;
    background: #e0edff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.app-feature-icon-box .bi {
    font-size: 22px;
    color: #493c68;
    line-height: 1;
}

/* ===== INDIVIDUAL — Key Features ===== */
.app-feature-custom-functionality { /* Custom Functionality box  */ }
.app-feature-secure-data          { /* Secure Data Handling box  */ }
.app-feature-role-access          { /* Role-Based Access box     */ }
.app-feature-reporting            { /* Reporting & Analytics box */ }
.app-feature-scalable             { /* Scalable Architecture box */ }
.app-feature-high-performance     { /* High Performance box      */ }

/* ===== TYPES ROW ===== */
.app-types-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.app-type-item {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #8f9194;
    padding: 10px 15px;
    border-radius: 14px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.app-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.12);
    border-color: #93c5fd;
}

.app-type-item h3 {
    font-size: 16px;
    font-weight: 400;
    color: #1e293b;
    margin: 10px 0 6px;
}

.app-type-item p {
    font-size: 1.2rem;
    color: #33363a;
    line-height: 1.6;
    margin: 0;
}

.app-type-icon-box {
    width: 50px;
    height: 50px;
    background: #e0edff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.app-type-icon-box .bi {
    font-size: 22px;
    color: #3b82f6;
    line-height: 1;
}

/* ===== INDIVIDUAL — Types of Software ===== */
.app-type-crm             { /* CRM Software box              */ }
.app-type-erp             { /* ERP Systems box               */ }
.app-type-billing         { /* Billing & Invoice box         */ }
.app-type-hr              { /* Attendance & HR Systems box   */ }
.app-type-inventory       { /* Inventory Management box      */ }
.app-type-custom-business { /* Custom Business Apps box      */ }

/* ===== STEPS ROW ===== */
/* .app-steps-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.app-step-item {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e3edff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 12px 12px 0;
    padding: 20px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.app-step-item:hover {
    background: #eef5ff;
    box-shadow: 0 6px 20px rgba(59,130,246,0.12);
    transform: translateY(-4px);
}

.app-step-num {
    font-size: 26px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    min-width: 32px;
}

.app-step-body h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
}

.app-step-body p {
    font-size: 1.2rem;
    color: #1165da;
    margin: 0;
    line-height: 1.5;
} */

/* ===== INDIVIDUAL — Steps ===== */
.app-step-business-analysis { /* Step 1 — Business Analysis */ }
.app-step-system-design     { /* Step 2 — System Design     */ }
.app-step-development       { /* Step 3 — Development       */ }
.app-step-testing           { /* Step 4 — Testing           */ }
.app-step-training          { /* Step 5 — User Training     */ }
.app-step-maintenance       { /* Step 6 — Maintenance       */ }

/* ===== INDIVIDUAL — Technologies ===== */
.app-tech-backend     { /* Backend box     */ }
.app-tech-frontend    { /* Frontend box    */ }
.app-tech-database    { /* Database box    */ }
.app-tech-cloud       { /* Cloud box       */ }
.app-tech-integration { /* Integration box */ }

/* ===== INDIVIDUAL — Services ===== */
.app-service-custom-dev   { /* Custom Software Development   */ }
.app-service-automation   { /* Business Automation Solutions */ }
.app-service-upgrades     { /* Software Upgrades             */ }
.app-service-integrations { /* Third-Party Integrations      */ }
.app-service-support      { /* Long-Term Support             */ }

/* ===== QUOTE ===== */
.app-quote-section {
    background: linear-gradient(135deg, #e0edff, #f0f7ff);
    padding: 60px 0;
}

.app-quote-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.app-quote-icon {
    font-size: 48px;
    color: #93c5fd;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.app-quote-text {
    font-size: 1.8rem;
    color: #475569;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .app-features-row,
    .app-types-row,
    .app-steps-row,
    .app-grid-5,
    .app-grid-services {
        flex-wrap: wrap;
    }
    .app-feature-item,
    .app-type-item,
    .app-step-item,
    .app-grid-5 > *,
    .app-grid-services > * {
        flex: 1 1 calc(33% - 20px);
    }
    .app-grid-3 > * {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .app-hero-section { padding: 140px 0 50px; }

    .app-hero-container {
        flex-direction: column;
        gap: 40px;
    }
    .app-hero-image { text-align: center; }
    .app-hero-title { font-size: 30px; }

    .app-quote-text { font-size: 1.4rem; }

    .app-features-row,
    .app-types-row,
    .app-steps-row,
    .app-grid-5,
    .app-grid-services {
        flex-wrap: wrap;
    }

    .app-feature-item,
    .app-type-item,
    .app-step-item,
    .app-grid-5 > *,
    .app-grid-services > * {
        flex: 1 1 calc(50% - 20px);
    }

    .app-grid-3 > * {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .app-hero-section { padding: 100px 0 40px; }
    .app-hero-title { font-size: 26px; }
    .app-quote-text { font-size: 1.2rem; }

    .app-feature-item,
    .app-type-item,
    .app-step-item,
    .app-grid-5 > *,
    .app-grid-services > *,
    .app-grid-3 > * {
        flex: 1 1 100%;
    }
}