*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
color:#fff;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.flex-between{
display:flex;
align-items:center;
justify-content:space-between;
}

/* TOP BAR */

.topbar{
background:#06303C;
font-size:14px;
color:#fff;
}

.flex-between{
display:flex;
justify-content:space-between;
align-items:center;
}

/* LEFT */

.top-left span{
margin-right:20px;
}

/* RIGHT ORANGE BOX */

.top-right{
background:#FB5621;
padding:6px 15px;
display:flex;
align-items:center;
gap:12px;
border-radius:30px;
}

/* ICONS */

.top-right i{
background:#fff;
color:#FB5621;
width:22px;
height:22px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:12px;
}

/* NAVBAR */

.navbar{
position:absolute;
width:100%;
top:60px;
z-index:10;
}

.logo{
font-size:22px;
font-weight:bold;
}

.menu{
display:flex;
gap:25px;
list-style:none;
}

.menu li{
cursor:pointer;
}

.menu .active{
color:#FB5621;
}
.headerbuttonarrow{
background:#000;
border:none;
padding:6px 8px;
color:#fff;
border-radius:50%;
cursor:pointer;
}
.order-btn{
background:#FB5621;
border:none;
padding:10px 20px;
color:#fff;
border-radius:30px;
cursor:pointer;
}

/* HERO */

.hero{
height:90vh;
background:url("img/bg.jpg") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(90deg,#0c2b3a 20%,transparent);
}

.hero-content{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
z-index:2;
}

.hero-left{
max-width:550px;
}

.tag{
margin-bottom:15px;
font-size:14px;
}

.hero-left h1{
font-size:52px;
line-height:1.2;
margin-bottom:20px;
}

.desc{
margin-bottom:25px;
color:#ddd;
}

.hero-buttons{
display:flex;
align-items:center;
gap:30px;
}

.about-btn{
background:#FB5621;
border:none;
padding:12px 25px;
border-radius:30px;
color:#fff;
cursor:pointer;
}

.customers{
display:flex;
align-items:center;
gap:10px;
}

.customers img{
width:40px;
height:40px;
border-radius:50%;
border:2px solid #fff;
margin-left:-10px;
}

/* CARD */

.hero-card{
display:flex;
align-items:center;
gap:20px;

margin-top: 150px;

padding:20px;
width:420px;

border-radius:8px;
color:#fff;
}

/* IMAGE */

.card-img img{
width:160px;
height:110px;
object-fit:cover;
border-radius:5px;
}

/* TEXT */

.card-text h3{
font-size:22px;
margin-bottom:8px;
}

.card-text p{
font-size:14px;
color:#ddd;
margin-bottom:10px;
}

.card-text a{
color:#fff;
font-weight:600;
text-decoration:none;
}

.about-section{
padding:100px 0;
background:#fff;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-tag{
color:#FB5621;
font-weight:600;
display:block;
margin-bottom:10px;
}

.about-left h2{
font-size:40px;
margin-bottom:30px;
color: #000;
}

.about-left h2 span{
color:#FB5621;
}

.about-features{
display:flex;
gap:40px;
margin-bottom:20px;
}

.feature-box{
display:flex;
gap:15px;
max-width:260px;
}

.icon{
    background: #FB5621;
    color: #fff;
    width: 23px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 10px;
}

.feature-box h4{
margin-bottom:5px;
color: #000;
}

.feature-box p{
font-size:14px;
color:#666;
}

.about-desc{
color:#666;
margin:20px 0;
}

.about-bottom{
display:flex;
align-items:center;
gap:20px;
}

.read-btn{
background:#FB5621;
color:#fff;
border:none;
padding:12px 25px;
border-radius:30px;
cursor:pointer;
}

.author{
display:flex;
align-items:center;
gap:10px;
}

.author img{
width:45px;
height:45px;
border-radius:50%;
}
.nameauthor b,
.nameauthor p{
color:#000;
}

/* RIGHT IMAGE */

.about-right{
display:flex;
justify-content:center;
}

.image-wrapper{
position:relative;
width:420px;
}

.image-wrapper img{
width:100%;
clip-path:polygon(0, 0,100% 0,100% 100%,0 100%);
border-radius:10px;
}

/* CIRCLE */

.circle-badge{
position:absolute;
left:-30px;
top:50%;
transform:translateY(-50%);
background:white;
border:3px solid #FB5621;
width:110px;
height:110px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
font-size:14px;
font-weight:600;
}

.services-section{
    /* height:90vh; */
background:url("img/Union.png") center/cover no-repeat;
padding:100px 0;
/* background:#fff; */
}

.services-grid{
display:grid;
grid-template-columns:300px 1fr;
gap:40px;
}

.service-tag{
color:#FB5621;
font-weight:600;
display:block;
margin-bottom:10px;
}

.services-left h2{
font-size:38px;
line-height:1.3;
color:#000;
}

/* RIGHT GRID */

.services-right{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.service-card{
background:#fff;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
border-radius:5px;
overflow:hidden;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-card img{
width:100%;
height:160px;
object-fit:cover;
}

.service-content{
padding:20px;
}

.service-content h4{
margin-bottom:10px;
font-size:18px;
color:#000;
}

.service-content p{
font-size:14px;
color:#666;
line-height:1.6;
}

.skills-section{
padding:100px 0;
background:#fff;
}

.skills-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.skills-tag{
color:#FB5621;
font-weight:600;
display:block;
margin-bottom:10px;
}

.skills-left h2{
font-size:38px;
margin-bottom:20px;
color:#000;
}

.skills-left span{
color:#FB5621;
}

.skills-desc{
color:#666;
margin-bottom:30px;
line-height:1.6;
}

/* SKILLS */

.skill{
margin-bottom:20px;
}

.skill p{
margin-bottom:6px;
font-weight:500;
}

.progress{
background:#ddd;
height:8px;
border-radius:4px;
overflow:hidden;
}

.progress-bar{
background:#FB5621;
height:8px;
color:#fff;
font-size:10px;
text-align:right;
padding-right:5px;
line-height:8px;
}

/* BUTTON */

.skills-btn{
margin-top:20px;
background:#FB5621;
border:none;
padding:12px 25px;
color:#fff;
border-radius:30px;
cursor:pointer;
}

/* RIGHT SIDE */

.skills-right{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.circle-bg{
width:380px;
height:380px;
background:#ff5a2c;
border-radius:50%;
position:absolute;
z-index:1;
}

.truck-img{
width:420px;
position:relative;
z-index:2;
}

.process-section{
padding:100px 0;
background:#F3F4F8;
text-align:center;
}

.process-tag{
color:#FB5621;
font-weight:600;
display:block;
margin-bottom:10px;
}

.process-title{
font-size:36px;
margin-bottom:60px;
color:#000;
}

.process-grid{
display:flex;
align-items:flex-start;
justify-content:center;
flex-wrap:wrap;
}

/* ITEM */

.process-item{
max-width:220px;
}

.process-icon{
width:70px;
height:70px;
background:#FB5621;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
margin:auto;
margin-bottom:20px;
box-shadow:0 8px 15px rgba(0,0,0,0.15);
}

.process-item h4{
margin-bottom:10px;
font-size:16px;
color:#000;

}

.process-item p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* ARROW */

.arrow{
font-size:30px;
color:#FB5621;
margin-top:25px;
}

.testimonial-section{
background:#2d2d2d;
color:#fff;
padding:100px 0 60px;
}

.testimonial-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.testimonial-tag{
color:#fff;
font-weight:600;
display:block;
margin-bottom:10px;
}

.testimonial-left h2{
font-size:36px;
}

/* RIGHT */

.slider-nav{
display:flex;
align-items:center;
gap:10px;
justify-content:flex-end;
margin-bottom:20px;
}

.slider-nav button{
background:transparent;
border:1px solid #999;
color:#fff;
width:30px;
height:30px;
cursor:pointer;
}

.slider-nav span{
font-size:14px;
}

/* CARDS */

.testimonial-cards{
display:flex;
gap:20px;
}

.testimonial-card{
background:#4a4a4a;
padding:25px;
width:250px;
}

.quote{
font-size:14px;
color:#ddd;
margin-bottom:20px;
}

.testimonial-card h4{
margin-bottom:5px;
}

.testimonial-card span{
font-size:13px;
color:#bbb;
}

/* CLIENT LOGOS */

.client-logos{
margin-top:60px;
display:flex;
justify-content:space-between;
align-items:center;
opacity:0.6;
}

.client-logos img{
height:35px;
filter:grayscale(100%);
}
.team-section{
padding:100px 0;
background:#fff;
text-align:center;
}

.team-tag{
color:#ff5a2c;
font-weight:600;
display:block;
margin-bottom:10px;
}

.team-title{
font-size:36px;
margin-bottom:60px;
color:#000;
}

.team-title span{
color:#ff5a2c;
}

/* GRID */

.team-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

/* CARD */

.team-card{
background:#fff;
padding-bottom:15px;
transition:0.3s;
}

.team-card img{
width:100%;
height:160px;
object-fit:cover;
}

.team-info{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}

.team-info h4{
margin-bottom:4px;
font-size:16px;
color:#000;
}

.team-info p{
font-size:13px;
color:#666;
}

/* ICON */

.team-icon{
width:40px;
height:40px;
background:#ff5a2c;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
}
.team-icon img{
width:30px;
height:30px;
}

/* LINE */

.team-line{
height:3px;
background:#ff5a2c;
width:80%;
margin:auto;
margin-top:10px;
}

.faq-section{
padding:100px 0;
background:#fff;
}

.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.faq-tag{
color:#ff5a2c;
font-weight:600;
display:block;
margin-bottom:10px;
}

.faq-title{
font-size:36px;
margin-bottom:30px;
color:#000;
}

.faq-title span{
color:#ff5a2c;
}

/* FAQ ITEMS */

.faq-item{
background:#fff;
border-radius:30px;
margin-bottom:15px;
padding:15px 20px;
box-shadow:0 5px 10px rgba(0,0,0,0.05);
}

.faq-question{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
font-weight:500;
color: #000;
}

.faq-btn{
width:30px;
height:30px;
background:#ff5a2c;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
}

.faq-answer{
margin-top:15px;
font-size:13px;
color:#666;
line-height:1.6;
}

/* RIGHT SIDE */

.faq-right{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.faq-circle{
width:380px;
height:380px;
background:#ff5a2c;
border-radius:50%;
position:absolute;
z-index:1;
}

.faq-truck{
width:420px;
position:relative;
z-index:2;
}
.blog-section{
padding:100px 0;
background:#fff;
text-align:center;
}

.blog-tag{
color:#ff5a2c;
font-weight:600;
display:block;
margin-bottom:10px;
}

.blog-title{
font-size:36px;
margin-bottom:60px;
color:#000;
}

.blog-title span{
color:#ff5a2c;
}

/* GRID */

.blog-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:30px;
text-align:left;
}

/* LARGE BLOG */

.blog-large{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.blog-img{
position:relative;
}

.blog-img img{
width:100%;
height:250px;
object-fit:cover;
}

.hot{
position:absolute;
bottom:10px;
right:10px;
background:#ff5a2c;
color:#fff;
font-size:12px;
padding:5px 10px;
border-radius:4px;
}

.blog-content{
padding:20px;
}

.blog-content h3{
margin-bottom:10px;
color:#000;
}

.blog-meta{
font-size:13px;
color:#666;
margin-bottom:15px;
display:flex;
gap:15px;
}

/* AUTHOR */

.blog-author{
display:flex;
justify-content:space-between;
align-items:center;
}

.author-info{
display:flex;
gap:10px;
align-items:center;
}

.author-info img{
width:40px;
height:40px;
border-radius:50%;
}

/* BUTTON */

.read-btn{
background:#ff5a2c;
border:none;
color:#fff;
padding:8px 18px;
border-radius:20px;
cursor:pointer;
}

/* RIGHT BLOG */

.blog-right{
display:flex;
flex-direction:column;
gap:20px;
}

.blog-small{
display:flex;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.blog-small img{
width:180px;
height:160px;
object-fit:cover;
}

.blog-info{
padding:15px;
}

.blog-info h4{
margin-bottom:10px;
font-size:16px;
color: #000;
}

.blog-author img{
width:35px;
height:35px;
border-radius:50%;
margin-right:8px;
}

.quote-section{
background:#2c2c2c;
padding:100px 0;
color:#fff;
}

.quote-grid{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:60px;
align-items:center;
}

/* LEFT */

.quote-left{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.vertical-text{
position:absolute;
left:-140px;
top:50%;
transform:rotate(-90deg);
font-size:40px;
opacity:0.2;
letter-spacing:5px;
}

.circle-bg{
width:320px;
height:320px;
background:#ff5a2c;
border-radius:50%;
position:absolute;
z-index:1;
}

.quote-person{
width:320px;
position:relative;
z-index:2;
}

/* RIGHT */

.quote-tag{
color:#fff;
display:block;
margin-bottom:10px;
}

.quote-title{
font-size:36px;
margin-bottom:20px;
}

.quote-form{
background:#444;
padding:30px;
border-radius:15px;
}

/* FORM */

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:15px;
}

.form-group label{
display:block;
font-size:13px;
margin-bottom:5px;
}

.form-group input{
width:100%;
padding:10px;
background:transparent;
border:1px solid #666;
color:#fff;
border-radius:5px;
}

/* PROGRESS */

.progress-area{
margin-top:20px;
}

.progress{
background:#777;
height:8px;
border-radius:4px;
overflow:hidden;
}

.progress-bar{
background:#ff5a2c;
width:30%;
height:8px;
font-size:10px;
text-align:right;
padding-right:5px;
}

/* BUTTON */

.submit-btn{
margin-top:25px;
width:100%;
background:#ff5a2c;
border:none;
padding:14px;
border-radius:30px;
color:#fff;
font-size:16px;
cursor:pointer;
}

.contact-strip{
background:#ff5a2c;
padding:50px 0;
color:#fff;
}

.contact-grid{
display:grid;
grid-template-columns:1.2fr 1fr 1fr 1fr;
gap:30px;
align-items:center;
}

/* LEFT */

.contact-left h2{
font-size:32px;
margin-bottom:5px;
}

.contact-left p{
font-size:14px;
opacity:0.9;
}

/* ITEMS */

.contact-item{
display:flex;
gap:15px;
align-items:flex-start;
}

.icon{
font-size:24px;
}

.contact-item h4{
font-size:16px;
margin-bottom:5px;
}

.contact-item p{
font-size:13px;
opacity:0.9;
line-height:1.4;
}
.footer-section{
background:#2e2e2e;
color:#fff;
padding:100px 0;
}

.footer-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
}

/* LEFT */

.footer-tag{
color:#9fd2a7;
font-size:14px;
margin-bottom:15px;
}

.footer-title{
font-size:36px;
margin-bottom:20px;
}

.footer-desc{
color:#bbb;
line-height:1.6;
margin-bottom:25px;
}

.footer-social span{
margin-right:15px;
font-size:20px;
cursor:pointer;
}

/* RIGHT */

.subscribe-box{
display:flex;
gap:10px;
margin-bottom:40px;
}

.subscribe-box input{
flex:1;
padding:12px;
border-radius:25px;
border:none;
background:#444;
color:#fff;
}

.subscribe-box button{
background:#ff5a2c;
border:none;
padding:12px 20px;
border-radius:25px;
color:#fff;
cursor:pointer;
}

/* LINKS */

.footer-links{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.link-column h4{
margin-bottom:15px;
}

.link-column ul{
list-style:none;
padding:0;
}

.link-column li{
margin-bottom:8px;
color:#bbb;
font-size:14px;
}