2026-03-01 11:33:51 +00:00
< ? php
// Enhanced security headers
2026-03-02 11:30:42 +00:00
// Session for CSRF token
2026-03-01 11:33:51 +00:00
ini_set ( 'session.cookie_samesite' , 'Lax' );
ini_set ( 'session.cookie_httponly' , '1' );
ini_set ( 'session.cookie_secure' , '1' );
session_start ();
2026-03-02 11:30:42 +00:00
// Prevent caching - page contains session-specific tokens
// Aggressive no-cache headers removed to improve SEO performance. Caching is now enabled.
2026-03-01 11:33:51 +00:00
if ( ! isset ( $_SESSION [ 'csrf_token' ])) {
$_SESSION [ 'csrf_token' ] = bin2hex ( random_bytes ( 32 ));
}
header ( 'Strict-Transport-Security: max-age=31536000; includeSubDomains' );
header ( 'Content-Security-Policy: default-src \'self\'; script-src \'self\' \'unsafe-inline\' https://cdnjs.cloudflare.com https://www.googletagmanager.com https://www.google-analytics.com https://www.clarity.ms https://www.google.com https://www.gstatic.com; style-src \'self\' \'unsafe-inline\' https://fonts.googleapis.com; font-src \'self\' https://fonts.gstatic.com; img-src \'self\' data: https://www.google-analytics.com; connect-src \'self\' https://www.google-analytics.com https://analytics.google.com https://region1.google-analytics.com https://www.google.com; frame-src https://www.google.com;' );
// SEO and performance optimizations
2026-03-02 13:33:42 +00:00
$page_title = " Data Analytics Services UK | Business Intelligence Experts " ;
$page_description = " Transform your raw data into actionable insights. Our UK data analytics services provide business intelligence, reporting, and visualisation. Make smarter decisions. " ;
2026-03-01 11:33:51 +00:00
$canonical_url = " https://ukdataservices.co.uk/data-analytics-services.php " ;
2026-03-02 13:33:42 +00:00
$keywords = " data analytics services UK, business intelligence UK, data visualisation, data reporting, analytics consulting London, BI services, data analysis company " ;
2026-03-01 11:33:51 +00:00
$author = " UK Data Services " ;
$og_image = " https://ukdataservices.co.uk/assets/images/ukds-main-logo.png " ;
$twitter_card_image = " https://ukdataservices.co.uk/assets/images/ukds-main-logo.png " ;
?>
<! DOCTYPE html >
< html lang = " en " >
< head >
< meta charset = " UTF-8 " >
< meta name = " viewport " content = " width=device-width, initial-scale=1.0 " >
< title >< ? php echo htmlspecialchars ( $page_title ); ?> </title>
< meta name = " description " content = " <?php echo htmlspecialchars( $page_description ); ?> " />
< meta name = " keywords " content = " <?php echo htmlspecialchars( $keywords ); ?> " >
< meta name = " author " content = " <?php echo htmlspecialchars( $author ); ?> " >
2026-03-02 13:09:22 +00:00
< meta name = " google-site-verification " content = " la6e0_PDdHFkUn8NbHI-cMofozMcxtgrf73zwqKz6Ec " />
2026-03-01 11:33:51 +00:00
< meta name = " robots " content = " index, follow " >
2026-03-02 11:38:26 +00:00
< meta name = " googlebot " content = " index, follow " >
< meta name = " bingbot " content = " index, follow " >
2026-03-01 11:33:51 +00:00
< link rel = " canonical " href = " <?php echo htmlspecialchars( $canonical_url ); ?> " >
<!-- Open Graph / Social Media -->
< meta property = " og:type " content = " website " >
< meta property = " og:url " content = " <?php echo htmlspecialchars( $canonical_url ); ?> " >
< meta property = " og:title " content = " <?php echo htmlspecialchars( $page_title ); ?> " >
< meta property = " og:description " content = " <?php echo htmlspecialchars( $page_description ); ?> " >
< meta property = " og:image " content = " <?php echo htmlspecialchars( $og_image ); ?> " >
<!-- Twitter Card -->
< meta name = " twitter:card " content = " summary_large_image " >
< meta name = " twitter:url " content = " <?php echo htmlspecialchars( $canonical_url ); ?> " >
< meta name = " twitter:title " content = " <?php echo htmlspecialchars( $page_title ); ?> " >
< meta name = " twitter:description " content = " <?php echo htmlspecialchars( $page_description ); ?> " >
< meta name = " twitter:image " content = " <?php echo htmlspecialchars( $twitter_card_image ); ?> " >
2026-03-02 11:30:42 +00:00
<!-- Favicon and App Icons -->
< link rel = " icon " type = " image/svg+xml " href = " /assets/images/favicon.svg " >
< link rel = " apple-touch-icon " sizes = " 180x180 " href = " /assets/images/apple-touch-icon.svg " >
< link rel = " manifest " href = " /manifest.json " >
2026-03-02 11:38:26 +00:00
< meta name = " theme-color " content = " #144784 " >
2026-03-02 13:33:42 +00:00
< link rel = " stylesheet " href = " /assets/css/main.min.css?v=1.1.4 " >
2026-03-01 11:33:51 +00:00
<!-- Google Analytics 4 ( GA4 ) -->
< script async src = " https://www.googletagmanager.com/gtag/js?id=G-GK41JM8DK0 " ></ script >
< script >
window . dataLayer = window . dataLayer || [];
function gtag (){ dataLayer . push ( arguments );}
gtag ( 'js' , new Date ());
2026-03-02 13:33:42 +00:00
gtag ( 'config' , 'G-GK41JM8DK0' );
2026-03-01 11:33:51 +00:00
</ script >
</ head >
< body >
2026-03-02 13:33:42 +00:00
< ? php include ( $_SERVER [ 'DOCUMENT_ROOT' ] . '/includes/nav.php' ); ?>
2026-03-02 11:30:42 +00:00
2026-03-02 13:33:42 +00:00
< main >
< section class = " hero " style = " text-align: center; padding: 60px 20px; " >
< div class = " container " >
< h1 > UK Data Analytics & Business Intelligence Services </ h1 >
< p class = " subtitle " > Turn your complex data into clear , actionable insights . UK Data Services helps you unlock the stories hidden in your data , driving smarter decisions and strategic growth .</ p >
< a href = " /contact.php " class = " button-primary " > Get Your Free Analytics Consultation </ a >
</ div >
</ section >
2026-03-02 11:30:42 +00:00
2026-03-02 13:33:42 +00:00
< section class = " content-section " style = " padding: 40px 20px; " >
< div class = " container " >
< h2 > From Raw Data to Strategic Advantage </ h2 >
< p > In today ' s market , data is your most valuable asset , but only if you can understand it . Our expert UK - based analysts use advanced tools and techniques to transform raw information from any source—including our own < a href = " / " > web scraping services </ a > —into powerful business intelligence . We help you move beyond spreadsheets and into the realm of predictive insights and data - driven strategy .</ p >
</ div >
</ section >
< section class = " features-grid " style = " padding: 40px 20px; background-color: #f9f9f9; " >
< div class = " container " >
< h2 style = " text-align: center; margin-bottom: 40px; " > Our Data Analytics Services </ h2 >
< div class = " grid-3-col " >
< div class = " feature-item " >
< h3 > Business Intelligence ( BI ) </ h3 >
< p > We develop custom BI solutions that provide a holistic view of your operations . Track KPIs , monitor market trends , and analyse competitor performance with interactive dashboards tailored to your specific needs .</ p >
2026-03-02 13:09:22 +00:00
</ div >
2026-03-02 13:33:42 +00:00
< div class = " feature-item " >
< h3 > Custom Reporting & Visualisation </ h3 >
< p > Static reports are a thing of the past . We create dynamic , easy - to - understand data visualisations and automated reports that bring your data to life , making it accessible to stakeholders at every level .</ p >
2026-03-02 13:09:22 +00:00
</ div >
2026-03-02 13:33:42 +00:00
< div class = " feature-item " >
< h3 > Data Cleaning & Preparation </ h3 >
< p > Accurate analysis starts with clean data . We process , clean , and structure your datasets to ensure the integrity and reliability of your insights , eliminating errors and inconsistencies that can lead to flawed conclusions .</ p >
2026-03-02 13:09:22 +00:00
</ div >
</ div >
2026-03-02 13:33:42 +00:00
</ div >
</ section >
2026-03-02 13:09:22 +00:00
2026-03-02 13:33:42 +00:00
< section class = " content-section " style = " padding: 40px 20px; " >
< div class = " container " >
< h2 > Why Choose UK Data Services for Analytics ? </ h2 >
< ul >
< li >< strong > UK - Based Experts :</ strong > Our entire team is based in the UK , ensuring clear communication and a deep understanding of the local market .</ li >
< li >< strong > Technology Agnostic :</ strong > We work with the tools that are right for you , from Power BI and Tableau to custom Python - based solutions .</ li >
< li >< strong > Actionable Insights , Not Just Numbers :</ strong > We focus on delivering insights that you can use immediately to improve performance and drive revenue .</ li >
< li >< strong > End - to - End Solutions :</ strong > From data collection and scraping to final analysis and reporting , we can manage the entire data pipeline for you .</ li >
</ ul >
</ div >
</ section >
< section class = " cta-banner " style = " text-align: center; padding: 60px 20px; background-color: #144784; color: #fff; " >
< div class = " container " >
< h2 > Ready to Make Smarter , Data - Driven Decisions ? </ h2 >
< p > Contact our analytics experts today to discuss your project . We ' ll provide a free , no - obligation consultation to understand your goals and outline how we can help .</ p >
< a href = " /contact.php " class = " button-secondary " > Discuss Your Project </ a >
</ div >
</ section >
</ main >
< ? php include ( $_SERVER [ 'DOCUMENT_ROOT' ] . '/includes/footer.php' ); ?>
< script src = " /assets/js/main.min.js?v=1.1.1 " ></ script >
2026-03-02 11:30:42 +00:00
2026-03-01 11:33:51 +00:00
</ body >
</ html >