<style>

/* GLOBAL */

body{
background:#f6f7fb;
font-family:'Poppins',sans-serif;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section{
padding:80px 0;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* FEATURE IMAGE */

.feature-image img{
width:100%;
border-radius:10px;
margin-bottom:25px;
}

/* TITLE */

.service-title{
font-size:38px;
font-weight:700;
margin-bottom:20px;
color:#0f1f3d;
}

/* IMAGE TEXT */

.image-text{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
margin-top:30px;
}

.image-text img{
width:100%;
border-radius:10px;
}

.checklist{
list-style:none;
padding:0;
}

.checklist li{
margin-bottom:12px;
font-size:16px;
}

.checklist i{
color:#7f4af0;
margin-right:10px;
}

/* SIDEBAR */

.sidebar{
position:sticky;
top:120px;
}

.sidebar-box{
background:white;
padding:20px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.service-list{
padding:0;
}

.service-list li{
list-style:none;
border-bottom:1px solid #eee;
}

.service-list li a{
display:block;
padding:12px;
text-decoration:none;
color:#333;
transition:.3s;
}

.service-list li a i{
margin-right:10px;
color:#7f4af0;
}

.service-list li a:hover{
background:#7f4af0;
color:white;
padding-left:18px;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:32px;
color:#7f4af0;
margin-bottom:10px;
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
}

.stat{
background:linear-gradient(135deg,#6a11cb,#7f4af0);
color:white;
padding:50px;
text-align:center;
}

.stat h2{
font-size:36px;
}

/* TIMELINE */

.timeline{
max-width:900px;
margin:auto;
border-left:3px solid #7f4af0;
padding-left:30px;
margin-top:40px;
}

.timeline-item{
margin-bottom:40px;
position:relative;
}

.timeline-item:before{
content:'';
width:16px;
height:16px;
background:#7f4af0;
border-radius:50%;
position:absolute;
left:-38px;
top:6px;
}

.timeline-item img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

/* PLATFORMS */

.platforms{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.platform{
background:white;
padding:25px;
text-align:center;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.platform img{
width:60px;
margin-bottom:10px;
}

/* BLOG */

.blogs{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.blog{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.blog img{
width:100%;
height:180px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

/* FAQ */

.faq-item{
border:1px solid #eee;
border-radius:6px;
margin-bottom:10px;
}

.faq-question{
padding:14px;
cursor:pointer;
font-weight:600;
}

.faq-answer{
display:none;
padding:14px;
background:#fafafa;
}

/* CTA */

.cta{
background:linear-gradient(135deg,#6a11cb,#7f4af0);
color:white;
text-align:center;
padding:80px 0;
}

.cta a{
background:white;
color:#6a11cb;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

/* RESPONSIVE */

@media(max-width:900px){

.grid{grid-template-columns:1fr;}
.cards{grid-template-columns:1fr;}
.stats{grid-template-columns:1fr;}
.platforms{grid-template-columns:1fr;}
.blogs{grid-template-columns:1fr;}
.image-text{grid-template-columns:1fr;}

}

.ai-timeline-section{
background:#f6f7fb;
}

.timeline-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.timeline-left{
border-left:3px solid #7f4af0;
padding-left:30px;
}

.timeline-step{
position:relative;
margin-bottom:40px;
cursor:pointer;
}

.timeline-step:before{
content:'';
width:14px;
height:14px;
background:#ccc;
border-radius:50%;
position:absolute;
left:-38px;
top:5px;
}

.timeline-step.active:before{
background:#7f4af0;
}

.timeline-step h4{
margin-bottom:5px;
}

.timeline-right img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
transition:0.5s;
}

@media(max-width:900px){

.timeline-wrapper{
grid-template-columns:1fr;
}

}

/* SECTION A future-facing strategy for AI discovery*/

.container{
max-width:1200px;
margin:auto;
padding:0 30px;
}

.ai-strategy-section{
padding:30px 0;
background:#f7f8ff;
margin:20px 0;
}

.ai-title{
text-align:center;
font-size:36px;
font-weight:700;
margin-bottom:60px;
}

/* GRID */

.ai-strategy-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.ai-strategy-card{
background:#fff;
padding:35px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:0.4s;
}

.ai-strategy-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* ICON BOX */

.ai-icon-box{

width:80px;
height:80px;

background:linear-gradient(135deg,#7f4af0,#6a11cb);

border-radius:25px;

display:flex;
align-items:center;
justify-content:center;

margin-bottom:20px;

}

/* ICON */

.ai-icon-box i{
font-size:32px;
color:#fff;
}

/* TEXT */

.ai-strategy-card h3{
font-size:20px;
margin-bottom:12px;
}

.ai-strategy-card p{
font-size:15px;
color:#555;
line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:1100px){

.ai-strategy-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:700px){

.ai-strategy-grid{
grid-template-columns:1fr;
}

}

</style>