2025-06-07 10:53:32 +01:00
< ? php
// Enhanced security headers
header ( 'X-Content-Type-Options: nosniff' );
header ( 'X-Frame-Options: DENY' );
header ( 'X-XSS-Protection: 1; mode=block' );
header ( 'Strict-Transport-Security: max-age=31536000; includeSubDomains' );
header ( 'Referrer-Policy: strict-origin-when-cross-origin' );
$page_title = " About Us | UK Data Services - Expert Data Solutions Team " ;
$page_description = " Meet the expert team behind UK Data Services. Learn about our experience, values, and commitment to delivering professional data solutions. " ;
2025-06-08 20:51:14 +00:00
$canonical_url = " https://ukdataservices.co.uk/about " ;
2025-12-07 11:49:39 +00:00
// Breadcrumb navigation
$breadcrumbs = [
[ 'url' => '/' , 'label' => 'Home' ],
[ 'url' => '' , 'label' => 'About Us' ]
];
2025-06-07 10:53:32 +01:00
?>
<! 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 = " data experts, web scraping team, business intelligence specialists, UK data professionals " >
< meta name = " author " content = " UK Data Services " >
< meta name = " robots " content = " index, follow " >
< link rel = " canonical " href = " <?php echo htmlspecialchars( $canonical_url ); ?> " >
2025-12-07 11:49:39 +00:00
<!-- 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 = " https://ukdataservices.co.uk/assets/images/ukds-main-logo.png " >
< meta property = " og:locale " content = " en_GB " >
<!-- 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 = " https://ukdataservices.co.uk/assets/images/ukds-main-logo.png " >
2025-06-07 10:53:32 +01:00
<!-- Favicon -->
< link rel = " icon " type = " image/x-icon " href = " assets/images/favicon.ico " >
< link rel = " preconnect " href = " https://fonts.googleapis.com " >
< link rel = " preconnect " href = " https://fonts.gstatic.com " crossorigin >
< link href = " https://fonts.googleapis.com/css2?family=Roboto+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap " rel = " stylesheet " >
< link rel = " stylesheet " href = " assets/css/main.css " >
2025-06-07 17:13:28 +01:00
<!-- Enhanced Structured Data -->
< script type = " application/ld+json " >
{
" @context " : " https://schema.org " ,
" @type " : " AboutPage " ,
2025-06-08 20:51:14 +00:00
" @id " : " https://ukdataservices.co.uk/about#webpage " ,
" url " : " https://ukdataservices.co.uk/about " ,
2025-06-07 17:13:28 +01:00
" name " : " About UK Data Services " ,
" description " : " Learn about UK Data Services, our expert team, values, and commitment to delivering professional data solutions since 2018. " ,
" mainEntity " : {
" @type " : " Organization " ,
" @id " : " https://ukdataservices.co.uk#organization " ,
" name " : " UK Data Services " ,
" foundingDate " : " 2018 " ,
" description " : " Professional data solutions provider specializing in web scraping, data extraction, and business intelligence services. " ,
" knowsAbout " : [
" Web Scraping " ,
" Data Extraction " ,
" Business Intelligence " ,
" Data Analytics " ,
" GDPR Compliance " ,
" Data Processing "
],
" hasCredential " : [
{
" @type " : " EducationalOccupationalCredential " ,
" name " : " ISO 27001 Data Security "
},
{
" @type " : " EducationalOccupationalCredential " ,
" name " : " GDPR Compliance Certification "
}
],
" award " : [
" UK's No.1 Web Scraping Service " ,
" 99.8% Data Accuracy Achievement " ,
" £2.5M+ Client Value Created "
],
" employee " : [
{
" @type " : " Person " ,
" name " : " Senior Data Engineers " ,
" jobTitle " : " Data Engineering Team " ,
" worksFor " : {
" @id " : " https://ukdataservices.co.uk#organization "
}
}
]
}
}
</ script >
<!-- Company Statistics Schema -->
< script type = " application/ld+json " >
{
" @context " : " https://schema.org " ,
" @type " : " Dataset " ,
" name " : " UK Data Services Company Statistics " ,
" description " : " Key performance metrics and achievements of UK Data Services " ,
" creator " : {
" @id " : " https://ukdataservices.co.uk#organization "
},
" distribution " : [
{
" @type " : " DataDownload " ,
" name " : " Projects Completed " ,
" description " : " 500+ successful data projects delivered "
},
{
" @type " : " DataDownload " ,
" name " : " Client Satisfaction " ,
" description " : " 150+ happy clients across various industries "
},
{
" @type " : " DataDownload " ,
" name " : " Data Accuracy Rate " ,
" description " : " 99.9% accuracy in data extraction and processing "
}
]
}
</ script >
2025-12-07 11:49:39 +00:00
< ? php include ( $_SERVER [ 'DOCUMENT_ROOT' ] . '/includes/breadcrumb-schema.php' ); ?>
2025-06-07 10:53:32 +01:00
< style >
. about - hero {
padding : 120 px 0 60 px ;
background : linear - gradient ( 135 deg , #252d3b 0%, #144784 100%);
text - align : center ;
color : white ;
}
. values - grid {
display : grid ;
grid - template - columns : repeat ( auto - fit , minmax ( 250 px , 1 fr ));
gap : 30 px ;
margin : 60 px 0 ;
}
. value - card {
background : white ;
padding : 30 px ;
border - radius : 12 px ;
box - shadow : 0 4 px 20 px rgba ( 0 , 0 , 0 , 0.08 );
border - left : 4 px solid #179e83;
}
. stats - section {
background : linear - gradient ( 135 deg , #144784 0%, #179e83 100%);
color : white ;
padding : 80 px 0 ;
text - align : center ;
}
. stats - grid {
display : grid ;
grid - template - columns : repeat ( auto - fit , minmax ( 200 px , 1 fr ));
gap : 40 px ;
margin - top : 40 px ;
}
. stat - card {
text - align : center ;
}
. stat - number {
font - size : 3 rem ;
font - weight : 700 ;
display : block ;
margin - bottom : 8 px ;
}
. stat - label {
font - size : 1.1 rem ;
opacity : 0.9 ;
}
</ style >
</ head >
< body >
2025-06-07 17:09:01 +01:00
<!-- Skip to content link for accessibility -->
< a href = " #main-content " class = " skip-to-content " > Skip to main content </ a >
2025-06-07 10:53:32 +01:00
<!-- Navigation -->
< nav class = " navbar " id = " navbar " >
< div class = " nav-container " >
< div class = " nav-logo " >
< a href = " / " >
< img src = " assets/images/ukds-main-logo.png " alt = " UK Data Services " class = " logo " >
</ a >
</ div >
< div class = " nav-menu " id = " nav-menu " >
< a href = " / " class = " nav-link " > Home </ a >
2025-06-07 12:58:04 +01:00
< a href = " /#services " class = " nav-link " > Capabilities </ a >
2025-06-08 20:51:14 +00:00
< a href = " project-types " class = " nav-link " > Project Types </ a >
< a href = " about " class = " nav-link " > About </ a >
< a href = " blog/ " class = " nav-link " > Blog </ a >
2025-06-07 10:53:32 +01:00
< a href = " /#contact " class = " nav-link " > Contact </ a >
2025-06-08 20:51:14 +00:00
< a href = " quote " class = " nav-link cta-button " > Request Consultation </ a >
2025-06-07 10:53:32 +01:00
</ div >
< div class = " nav-toggle " id = " nav-toggle " >
< span class = " bar " ></ span >
< span class = " bar " ></ span >
< span class = " bar " ></ span >
</ div >
</ div >
</ nav >
<!-- Hero Section -->
2025-06-07 17:09:01 +01:00
< main id = " main-content " >
2025-06-07 10:53:32 +01:00
< section class = " about-hero " >
< div class = " container " >
2025-06-08 18:36:00 +00:00
< h1 > About UK Data Services - Expert Web Scraping & Business Intelligence </ h1 >
2025-06-07 10:53:32 +01:00
< p > Your trusted partner for professional data solutions since 2018 </ p >
</ div >
</ section >
<!-- Company Story -->
< section style = " padding: 80px 0; " >
< div class = " container " >
< div style = " max-width: 800px; margin: 0 auto; text-align: center; " >
< h2 style = " margin-bottom: 30px; " > Our Story </ h2 >
< p style = " font-size: 1.2rem; line-height: 1.6; color: #666; margin-bottom: 40px; " >
2025-06-07 12:58:04 +01:00
Founded in 2018 , UK Data Services emerged from a simple observation : businesses were drowning in data opportunities but struggling to extract actionable insights . Our founders , experienced data scientists and engineers , recognised the gap between raw web data and business intelligence .
2025-06-07 10:53:32 +01:00
</ p >
< p style = " font-size: 1.1rem; line-height: 1.6; color: #666; margin-bottom: 40px; " >
2025-06-07 12:58:04 +01:00
Today , we ' ve evolved into a trusted provider of web scraping and data extraction services , having successfully delivered over 500 projects across industries including e - commerce , finance , property , manufacturing , and healthcare . Our commitment to accuracy , compliance , and innovation has made us the trusted choice for businesses ranging from startups to FTSE companies .
2025-06-07 10:53:32 +01:00
</ p >
</ div >
</ div >
</ section >
<!-- Company Values -->
< section style = " padding: 80px 0; " >
< div class = " container " >
< div class = " section-header " >
< h2 > Our Core Values </ h2 >
< p > The principles that guide everything we do </ p >
</ div >
< div class = " values-grid " >
< div class = " value-card " >
< h3 style = " color: #179e83; margin-bottom: 16px; " > Data Accuracy </ h3 >
< p > We maintain the highest standards of data quality and accuracy . Every dataset undergoes rigorous validation to ensure 99.9 % accuracy rates that our clients depend on .</ p >
</ div >
< div class = " value-card " >
< h3 style = " color: #179e83; margin-bottom: 16px; " > Legal Compliance </ h3 >
< p > Full compliance with GDPR , data protection laws , and ethical data practices . We ensure all data extraction activities are legally sound and respectful of privacy rights .</ p >
</ div >
< div class = " value-card " >
< h3 style = " color: #179e83; margin-bottom: 16px; " > Innovation </ h3 >
< p > Continuous investment in cutting - edge technologies and methodologies . We stay ahead of industry trends to deliver next - generation data solutions .</ p >
</ div >
< div class = " value-card " >
< h3 style = " color: #179e83; margin-bottom: 16px; " > Client Partnership </ h3 >
< p > We view every engagement as a long - term partnership . Our success is measured by our clients ' success and the value we create together .</ p >
</ div >
< div class = " value-card " >
< h3 style = " color: #179e83; margin-bottom: 16px; " > Transparency </ h3 >
< p > Clear communication , honest timelines , and transparent processes . We believe in building trust through openness and reliability .</ p >
</ div >
< div class = " value-card " >
< h3 style = " color: #179e83; margin-bottom: 16px; " > Excellence </ h3 >
< p > Commitment to delivering exceptional results on every project . We continuously refine our processes to exceed client expectations .</ p >
</ div >
</ div >
</ div >
</ section >
<!-- Company Statistics -->
< section class = " stats-section " >
< div class = " container " >
< h2 style = " margin-bottom: 20px; " > Our Track Record </ h2 >
< p style = " font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; " > Trusted by businesses across the UK and internationally </ p >
< div class = " stats-grid " >
< div class = " stat-card " >
< span class = " stat-number " > 500 +</ span >
< span class = " stat-label " > Projects Completed </ span >
</ div >
< div class = " stat-card " >
< span class = " stat-number " > 150 +</ span >
< span class = " stat-label " > Happy Clients </ span >
</ div >
< div class = " stat-card " >
< span class = " stat-number " > 99.9 %</ span >
< span class = " stat-label " > Data Accuracy </ span >
</ div >
< div class = " stat-card " >
< span class = " stat-number " > 24 / 7 </ span >
< span class = " stat-label " > Support Available </ span >
</ div >
< div class = " stat-card " >
< span class = " stat-number " > 6 +</ span >
< span class = " stat-label " > Years Experience </ span >
</ div >
< div class = " stat-card " >
< span class = " stat-number " > 100 %</ span >
< span class = " stat-label " > GDPR Compliant </ span >
</ div >
</ div >
</ div >
</ section >
<!-- Mission Statement -->
< section style = " padding: 80px 0; " >
< div class = " container " >
< div style = " max-width: 800px; margin: 0 auto; text-align: center; " >
< h2 style = " margin-bottom: 30px; " > Our Mission </ h2 >
< p style = " font-size: 1.3rem; line-height: 1.6; color: #333; margin-bottom: 40px; font-weight: 500; " >
2025-06-07 12:58:04 +01:00
" To democratise access to web data and transform how businesses make decisions through accurate, actionable, and ethically-sourced information. "
2025-06-07 10:53:32 +01:00
</ p >
< p style = " font-size: 1.1rem; line-height: 1.6; color: #666; " >
We believe that every business , regardless of size , should have access to the data insights that drive competitive advantage . Our mission is to bridge the gap between complex web data and practical business intelligence , enabling our clients to make informed decisions that drive growth and innovation .
</ p >
</ div >
</ div >
</ section >
<!-- Call to Action -->
< section style = " padding: 80px 0; background: #f8f9fa; text-align: center; " >
< div class = " container " >
< h2 style = " margin-bottom: 20px; " > Ready to Work Together ? </ h2 >
< p style = " font-size: 1.2rem; color: #666; margin-bottom: 40px; " >
Let ' s discuss how our expertise can help transform your data challenges into opportunities
</ p >
< div style = " display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; " >
2025-06-08 20:51:14 +00:00
< a href = " quote " class = " btn btn-primary " > Get Free Quote </ a >
2025-06-07 10:53:32 +01:00
< a href = " /#contact " class = " btn btn-secondary " > Contact Us </ a >
</ div >
</ div >
</ section >
2025-06-07 17:09:01 +01:00
</ main >
2025-06-07 10:53:32 +01:00
<!-- Footer -->
< footer class = " footer " >
< div class = " container " >
< div class = " footer-content " >
< div class = " footer-section " >
< div class = " footer-logo " >
< img src = " assets/images/logo-white.svg " alt = " UK Data Services " >
</ div >
< p > Professional data solutions for modern businesses . Transform your operations with accurate , actionable insights .</ p >
</ div >
< div class = " footer-section " >
< h3 > Company </ h3 >
< ul >
< li >< a href = " / " > Home </ a ></ li >
2025-06-08 20:51:14 +00:00
< li >< a href = " about " > About Us </ a ></ li >
< li >< a href = " project-types " > Project Types </ a ></ li >
< li >< a href = " faq " > FAQ </ a ></ li >
< li >< a href = " quote " > Get Quote </ a ></ li >
2025-06-07 10:53:32 +01:00
< li >< a href = " /#contact " > Contact </ a ></ li >
</ ul >
</ div >
< div class = " footer-section " >
< h3 > Services </ h3 >
< ul >
< li >< a href = " /#services " > Web Scraping </ a ></ li >
< li >< a href = " /#services " > Business Intelligence </ a ></ li >
< li >< a href = " /#services " > Data Processing </ a ></ li >
< li >< a href = " /#services " > API Development </ a ></ li >
</ ul >
</ div >
< div class = " footer-section " >
< h3 > Contact </ h3 >
< ul >
< li > Phone : + 44 1692 689150 </ li >
< li > Email : info @ ukdataservices . co . uk </ li >
< li > Service Area : UK & International </ li >
</ ul >
</ div >
</ div >
< div class = " footer-bottom " >
< p >& copy ; < ? php echo date ( 'Y' ); ?> UK Data Services. All rights reserved.</p>
< div class = " social-links " >
< a href = " # " aria - label = " LinkedIn " >< img src = " assets/images/icon-linkedin.svg " alt = " LinkedIn " ></ a >
< a href = " # " aria - label = " Twitter " >< img src = " assets/images/icon-twitter.svg " alt = " Twitter " ></ a >
</ div >
</ div >
</ div >
</ footer >
<!-- Scripts -->
< script src = " assets/js/main.js " ></ script >
</ body >
</ html >