/*
Theme Name: Appline Technologies Premium
Author: OpenAI
Version: 1.0
*/

body{
margin:0;
font-family:Arial,sans-serif;
background:#07111f;
color:white;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:120px 8%;
background:linear-gradient(rgba(7,17,31,.75),rgba(7,17,31,.85)),
url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?q=80&w=1800&auto=format&fit=crop');
background-size:cover;
background-position:center;
}

.hero-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
width:100%;
}

.big-title{
font-size:90px;
font-weight:900;
line-height:.9;
}

.big-title span{
color:#00d9ff;
}

.hero p{
font-size:18px;
line-height:1.9;
color:#d1d5db;
}

.btn{
display:inline-block;
padding:18px 35px;
background:#00d9ff;
color:#07111f;
text-decoration:none;
border-radius:14px;
font-weight:bold;
margin-top:20px;
}

.section{
padding:100px 8%;
}

.section-title{
font-size:58px;
margin-bottom:50px;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card{
background:#0c1626;
border-radius:30px;
overflow:hidden;
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.card-content{
padding:30px;
}

.card-content h3{
font-size:30px;
}

.card-content p{
color:#cbd5e1;
line-height:1.8;
}

.contact{
background:linear-gradient(135deg,#00d9ff,#2563eb);
padding:60px;
border-radius:40px;
color:#07111f;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

.contact-box{
background:white;
padding:25px;
border-radius:24px;
}

footer{
padding:30px;
text-align:center;
color:#94a3b8;
}

@media(max-width:900px){

.hero-wrap{
grid-template-columns:1fr;
}

.big-title{
font-size:55px;
}

.section-title{
font-size:40px;
}

}
