
/*
Theme Name: SwiftShip Enterprise
Author: OpenAI
Version: 2.0
*/

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
font-family:Arial,sans-serif;
background:#f5f7fb;
color:#222;
overflow-x:hidden;
line-height:1.6;
}
a{text-decoration:none}
img{max-width:100%;display:block}

header{
background:#4D148C;
padding:18px 5%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 12px rgba(0,0,0,.12);
}
.logo img{height:58px}
nav ul{
display:flex;
gap:28px;
list-style:none;
}
nav a{
color:#fff;
font-weight:700;
}
nav a:hover{color:#FF6600}

.hero{
background:linear-gradient(rgba(35,0,70,.82),rgba(35,0,70,.82)),
url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=1600') center/cover;
padding:120px 20px;
text-align:center;
color:#fff;
}
.hero h1{
font-size:66px;
max-width:920px;
margin:auto;
line-height:1.1;
margin-bottom:25px;
}
.hero p{
font-size:22px;
margin-bottom:35px;
}

.track-box{
background:#fff;
padding:30px;
max-width:760px;
margin:auto;
border-radius:16px;
box-shadow:0 12px 40px rgba(0,0,0,.18);
}
.track-box input,
.track-box button{
width:100%;
padding:16px;
margin-top:12px;
border-radius:8px;
font-size:16px;
}
.track-box button{
background:#FF6600;
border:none;
color:#fff;
font-weight:700;
cursor:pointer;
}

.section{
padding:90px 5%;
}
.section-title{
text-align:center;
margin-bottom:50px;
}
.section-title h2{
font-size:46px;
margin-bottom:10px;
color:#4D148C;
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:24px;
}
.stat{
background:#fff;
padding:35px;
border-radius:16px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}
.stat h3{
font-size:42px;
color:#FF6600;
margin-bottom:10px;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}
.card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 5px 25px rgba(0,0,0,.08);
transition:.3s;
}
.card:hover{transform:translateY(-5px)}
.card img{
height:220px;
width:100%;
object-fit:cover;
}
.card-content{
padding:25px;
}
.card-content h3{
font-size:28px;
color:#4D148C;
margin-bottom:10px;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}
.about-box{
background:#fff;
padding:35px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}
.about-box h2{
font-size:42px;
margin-bottom:18px;
color:#4D148C;
}

.track-results{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
overflow:auto;
}

.timeline{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:15px;
margin-top:30px;
}
.step{
background:#ece8f7;
padding:16px;
border-radius:10px;
text-align:center;
font-weight:700;
}
.step.active{
background:#FF6600;
color:#fff;
}

.faq{
display:grid;
gap:18px;
}
.faq-item{
background:#fff;
padding:25px;
border-radius:14px;
box-shadow:0 5px 18px rgba(0,0,0,.06);
}
.faq-item h4{
color:#4D148C;
margin-bottom:10px;
font-size:20px;
}

footer{
background:#2d0a56;
color:#fff;
padding:70px 5% 30px;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
margin-bottom:40px;
}
.footer-box h3{
margin-bottom:15px;
font-size:24px;
}
.contact-line{
display:flex;
gap:12px;
margin-bottom:14px;
align-items:center;
}
.icon{
background:#FF6600;
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
}
.copyright{
border-top:1px solid rgba(255,255,255,.15);
padding-top:20px;
text-align:center;
}

@media(max-width:768px){

header{
flex-direction:column;
gap:18px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:14px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:17px;
}

.section{
padding:70px 20px;
}

.about{
grid-template-columns:1fr;
}

.section-title h2{
font-size:34px;
}

.card img{
height:180px;
}

footer{
padding:60px 20px 25px;
}
}
