templates/solutions/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Solutions | CogniEdu{% endblock %}
  3. {% block body %}
  4. <section class="py-5">
  5.   <div class="container">
  6.     <div class="mb-5">
  7.       <h1 class="display-5 fw-bold">Solutions</h1>
  8.       <p class="lead text-muted">
  9.         AI-driven solutions designed to help higher education institutions make smarter, faster, and more confident decisions.
  10.       </p>
  11.     </div>
  12.     <div class="row g-4">
  13.       <div class="col-md-6 col-lg-3">
  14.         <div class="card h-100 shadow-sm">
  15.           <div class="card-body">
  16.             <h5 class="card-title">Business Intelligence</h5>
  17.             <p class="card-text text-muted">
  18.               Institutional data transformed into actionable insight through unified dashboards and KPIs.
  19.             </p>
  20.             <ul class="small text-muted mb-0">
  21.               <li>Executive KPI dashboards</li>
  22.               <li>Trend + performance tracking</li>
  23.               <li>Custom reporting</li>
  24.             </ul>
  25.           </div>
  26.         </div>
  27.       </div>
  28.       <div class="col-md-6 col-lg-3">
  29.         <div class="card h-100 shadow-sm">
  30.           <div class="card-body">
  31.             <h5 class="card-title">Financial Analysis</h5>
  32.             <p class="card-text text-muted">
  33.               Clear visibility into financial performance with scenario modeling and risk identification.
  34.             </p>
  35.             <ul class="small text-muted mb-0">
  36.               <li>Budget vs actuals</li>
  37.               <li>Scenario planning</li>
  38.               <li>Risk / opportunity signals</li>
  39.             </ul>
  40.           </div>
  41.         </div>
  42.       </div>
  43.       <div class="col-md-6 col-lg-3">
  44.         <div class="card h-100 shadow-sm">
  45.           <div class="card-body">
  46.             <h5 class="card-title">Enrollment Analytics</h5>
  47.             <p class="card-text text-muted">
  48.               Predict enrollment outcomes and respond proactively to shifts in student behavior and markets.
  49.             </p>
  50.             <ul class="small text-muted mb-0">
  51.               <li>Forecasting by program/cohort</li>
  52.               <li>Yield and retention insights</li>
  53.               <li>Early risk alerts</li>
  54.             </ul>
  55.           </div>
  56.         </div>
  57.       </div>
  58.       <div class="col-md-6 col-lg-3">
  59.         <div class="card h-100 shadow-sm">
  60.           <div class="card-body">
  61.             <h5 class="card-title">Revenue Forecasting</h5>
  62.             <p class="card-text text-muted">
  63.               Multi-year projections and confidence ranges to support sustainable growth planning.
  64.             </p>
  65.             <ul class="small text-muted mb-0">
  66.               <li>Tuition/fee forecasting</li>
  67.               <li>Multi-year modeling</li>
  68.               <li>Confidence ranges</li>
  69.             </ul>
  70.           </div>
  71.         </div>
  72.       </div>
  73.     </div>
  74.     <div class="mt-5 p-4 bg-light rounded-3 border">
  75.       <div class="row align-items-center g-3">
  76.         <div class="col-lg-8">
  77.           <h2 class="h4 mb-1">Ready to see CogniEdu in action?</h2>
  78.           <p class="mb-0 text-muted">Tell us about your institution and we’ll schedule a demo.</p>
  79.         </div>
  80.         <div class="col-lg-4 text-lg-end">
  81.           <a href="{{ path('request_demo') }}" class="btn btn-primary">
  82.             Request a Demo
  83.           </a>
  84.           <a href="{{ path('contact') }}" class="btn btn-outline-secondary ms-2">
  85.             Contact
  86.           </a>
  87.         </div>
  88.       </div>
  89.     </div>
  90.   </div>
  91. </section>
  92. {% endblock %}