/*==================================================
 Century Cargo Blog CSS
 Part 1
==================================================*/


/*=========================
Google Font
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================
Reset
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
    line-height:1.8;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}


/*=========================
Container
=========================*/

.container{
    width:100%;
    max-width:1240px;
    margin:auto;
    padding:0 15px;
}


/*=========================
Theme Colors
=========================*/

:root{

--primary:#ff6600;

--secondary:#0d6efd;

--dark:#1f2937;

--light:#ffffff;

--gray:#6b7280;

--bg:#f7f9fc;

--border:#e6e6e6;

--shadow:0 15px 40px rgba(0,0,0,.08);

}


/*=========================
Breadcrumb
=========================*/

.breadcrumb{

background:#fff;

padding:16px 0;

border-bottom:1px solid #ececec;

}

.breadcrumb .container{

display:flex;

align-items:center;

gap:12px;

flex-wrap:wrap;

}

.breadcrumb a{

color:var(--secondary);

font-size:15px;

font-weight:500;

}

.breadcrumb a:hover{

color:var(--primary);

}

.breadcrumb span{

color:#666;

font-size:15px;

}


/*=========================
Hero
=========================*/

.blog-hero{

background:linear-gradient(135deg,#0f172a,#1d4ed8,#2563eb);

padding:90px 0;

position:relative;

overflow:hidden;

}

.blog-hero::before{

content:"";

position:absolute;

width:420px;

height:420px;

border-radius:50%;

background:rgba(255,255,255,.08);

top:-150px;

right:-120px;

}

.blog-hero::after{

content:"";

position:absolute;

width:300px;

height:300px;

border-radius:50%;

background:rgba(255,255,255,.05);

left:-80px;

bottom:-120px;

}

.hero-content{

position:relative;

z-index:10;

text-align:center;

color:#fff;

max-width:900px;

margin:auto;

}

.blog-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 24px;

border-radius:50px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(8px);

font-size:15px;

font-weight:600;

margin-bottom:25px;

}

.blog-badge i{

font-size:18px;

color:#ffd43b;

}

.hero-content h1{

font-size:48px;

font-weight:800;

line-height:1.25;

margin-bottom:25px;

}

.hero-content p{

font-size:19px;

line-height:1.9;

opacity:.95;

margin-bottom:35px;

}


/*=========================
Hero Meta
=========================*/

.hero-meta{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

.hero-meta div{

background:rgba(255,255,255,.12);

padding:14px 22px;

border-radius:12px;

display:flex;

align-items:center;

gap:10px;

font-size:15px;

backdrop-filter:blur(8px);

}

.hero-meta i{

color:#ffd43b;

}


/*=========================
Hero Features
=========================*/

.hero-features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

margin-top:30px;

}

.feature{

background:#fff;

color:#222;

padding:22px;

border-radius:16px;

font-weight:600;

box-shadow:var(--shadow);

transition:.35s;

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

text-align:center;

}

.feature:hover{

transform:translateY(-8px);

}

.feature i{

width:65px;

height:65px;

border-radius:50%;

background:linear-gradient(135deg,#ff6600,#ff8c00);

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#fff;

margin-bottom:18px;

}









/*==================================================
Blog Main Layout
Part 2
==================================================*/

.blog-main{
    padding:70px 0;
}

.blog-container{
    display:grid;
    grid-template-columns:2.2fr .8fr;
    gap:35px;
    align-items:start;
}

/*=========================
Main Content
=========================*/

.blog-content{

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:var(--shadow);

}

.blog-content h2{

    font-size:34px;

    margin-bottom:20px;

    color:var(--dark);

    display:flex;

    align-items:center;

    gap:12px;

}

.blog-content h2 i{

    color:var(--primary);

}

.blog-content h3{

    font-size:24px;

    margin:30px 0 15px;

    color:var(--dark);

}

.blog-content p{

    font-size:17px;

    color:#555;

    margin-bottom:20px;

}

.blog-content ul{

    margin:20px 0;

    padding-left:20px;

    list-style:disc;

}

.blog-content li{

    margin-bottom:12px;

    color:#555;

}

/*=========================
Introduction
=========================*/

.blog-intro{

    background:#fff7ef;

    border-left:6px solid var(--primary);

    padding:30px;

    border-radius:14px;

    margin-bottom:40px;

}

/*=========================
Table Of Contents
=========================*/

.table-of-content{

    background:#f8fbff;

    border:1px solid #dbeafe;

    border-radius:16px;

    padding:30px;

    margin-bottom:45px;

}

.table-of-content h2{

    font-size:28px;

    margin-bottom:20px;

}

.table-of-content ul{

    list-style:none;

    padding:0;

}

.table-of-content li{

    margin:12px 0;

}

.table-of-content a{

    color:#2563eb;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:10px;

}

.table-of-content a:hover{

    color:var(--primary);

    padding-left:6px;

}

/*=========================
Feature Grid
=========================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin:45px 0;

}

.feature-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#ff6600,#ff9800);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    margin-bottom:20px;

}

.feature-card h3{

    font-size:22px;

    margin-bottom:12px;

}

.feature-card p{

    font-size:15px;

    color:#666;

}

/*=========================
Quick Checklist Box
=========================*/

.checklist-box{

    background:#eef9f0;

    border-left:6px solid #16a34a;

    padding:35px;

    border-radius:16px;

    margin:45px 0;

}

.checklist-box h2{

    margin-bottom:20px;

}

.checklist-box ul{

    list-style:none;

    padding:0;

}

.checklist-box li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

    font-size:17px;

}

.checklist-box i{

    color:#16a34a;

}

/*=========================
Sidebar
=========================*/

.blog-sidebar{

    position:sticky;

    top:25px;

}

.sidebar-box{

    background:#fff;

    border-radius:18px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:var(--shadow);

}

.sidebar-box h3{

    font-size:22px;

    margin-bottom:18px;

    display:flex;

    align-items:center;

    gap:10px;

}

.sidebar-box h3 i{

    color:var(--primary);

}

.sidebar-box ul{

    list-style:none;

    padding:0;

}

.sidebar-box ul li{

    margin-bottom:14px;

}

.sidebar-box ul li a{

    color:#444;

    font-weight:500;

}

.sidebar-box ul li a:hover{

    color:var(--primary);

}











/*==================================================
BLOG CSS - PART 3
Timeline | Cards | Documents | Blog Sections
==================================================*/


/*=========================
Timeline Section
=========================*/

.timeline-section{
    margin:70px 0;
}

.timeline-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:35px;
}

.timeline-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    border:1px solid #ededed;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.timeline-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:5px;

    height:100%;

    background:linear-gradient(#ff6600,#ff9800);

}

.timeline-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.timeline-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff6600,#ff9800);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:20px;

}

.timeline-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.timeline-card p{

    color:#666;

    font-size:15px;

}


/*=========================
Blog Sections
=========================*/

.blog-section{

    margin:70px 0;

}

.blog-section h2{

    margin-bottom:20px;

}

.blog-section p{

    margin-bottom:20px;

}


/*=========================
Packing Cards
=========================*/

.packing-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:35px;

}

.packing-card{

    background:#fff;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

}

.packing-card:hover{

    transform:translateY(-8px);

}

.packing-card i{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:18px;

    background:linear-gradient(135deg,#2563eb,#0ea5e9);

    color:#fff;

    font-size:28px;

}

.packing-card h3{

    font-size:20px;

    margin-bottom:10px;

}

.packing-card p{

    font-size:15px;

    color:#666;

}


/*=========================
Documents Box
=========================*/

.document-box{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    border-left:6px solid #2563eb;

}

.document-box ul{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.document-box li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 0;

    border-bottom:1px solid #eee;

    font-size:16px;

}

.document-box li:last-child{

    border:none;

}

.document-box i{

    color:#16a34a;

    font-size:18px;

}


/*=========================
Highlight Box
=========================*/

.highlight-box{

    background:linear-gradient(135deg,#fff8ec,#ffffff);

    border-left:6px solid #ff6600;

    border-radius:18px;

    padding:30px;

    margin:40px 0;

}

.highlight-box h3{

    margin-bottom:15px;

}

.highlight-box p{

    margin-bottom:0;

}


/*=========================
Warning Box
=========================*/

.warning-box{

    background:#fff5f5;

    border-left:6px solid #ef4444;

    border-radius:18px;

    padding:30px;

    margin:40px 0;

}

.warning-box h3{

    color:#dc2626;

    margin-bottom:15px;

}


/*=========================
Information Box
=========================*/

.info-box{

    background:#eff6ff;

    border-left:6px solid #2563eb;

    border-radius:18px;

    padding:30px;

    margin:40px 0;

}


/*=========================
Quote Box
=========================*/

.quote-box{

    background:linear-gradient(135deg,#ff6600,#ff8c00);

    color:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

    margin:50px 0;

}

.quote-box h2{

    color:#fff;

    margin-bottom:15px;

}

.quote-box p{

    color:#fff;

    opacity:.95;

}


/*=========================
Section Divider
=========================*/

.section-divider{

    width:120px;

    height:4px;

    background:linear-gradient(90deg,#ff6600,#ff9800);

    margin:20px 0 40px;

    border-radius:20px;

}













/*==================================================
BLOG CSS - PART 4
FAQ | CTA | Related Blog | Author
==================================================*/


/*=========================
FAQ Section
=========================*/

.faq-item{

    background:#fff;

    border-radius:16px;

    margin-bottom:20px;

    padding:25px;

    border:1px solid #e5e7eb;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.faq-item h3{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:20px;

    color:#1f2937;

    margin-bottom:15px;

}

.faq-item h3 i{

    color:#ff6600;

}

.faq-item p{

    color:#555;

    margin:0;

    line-height:1.8;

}



/*=========================
CTA Section
=========================*/

.blog-cta{

    margin:80px 0;

}

.cta-box{

    background:linear-gradient(135deg,#ff6600,#ff8c00);

    color:#fff;

    text-align:center;

    border-radius:22px;

    padding:60px 40px;

    box-shadow:0 20px 45px rgba(255,102,0,.25);

}

.cta-box h2{

    color:#fff;

    font-size:38px;

    margin-bottom:20px;

}

.cta-box p{

    max-width:750px;

    margin:0 auto 35px;

    font-size:18px;

    opacity:.95;

}



/*=========================
Buttons
=========================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#fff;

    color:#ff6600;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.btn-primary:hover{

    background:#1f2937;

    color:#fff;

}

.btn-secondary{

    background:transparent;

    color:#fff;

    border:2px solid #fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#ff6600;

}



/*=========================
Related Blogs
=========================*/

.related-blog{

    margin:80px 0;

}

.related-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:35px;

}

.related-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid #ececec;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

    color:#222;

}

.related-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.related-card i{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563eb,#0ea5e9);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.related-card h3{

    font-size:20px;

    line-height:1.5;

}



/*=========================
Author Box
=========================*/

.author-box{

    display:flex;

    align-items:center;

    gap:25px;

    background:#fff;

    border-radius:20px;

    padding:35px;

    margin:70px 0;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.author-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff6600,#ff9800);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    flex-shrink:0;

}

.author-content h3{

    margin-bottom:10px;

    font-size:26px;

}

.author-content p{

    margin:0;

    color:#666;

}



/*=========================
Service Links
=========================*/

.blog-links{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    margin:70px 0;

}

.blog-links ul{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.blog-links li{

    margin-bottom:15px;

}

.blog-links a{

    display:flex;

    align-items:center;

    gap:12px;

    color:#2563eb;

    font-weight:600;

    transition:.3s;

}

.blog-links a::before{

    content:"➜";

    color:#ff6600;

}

.blog-links a:hover{

    color:#ff6600;

    padding-left:8px;

}











/*==================================================
BLOG CSS - PART 5
Responsive Design
==================================================*/


/*=========================
Large Laptop
=========================*/

@media(max-width:1200px){

.container{
    width:95%;
}

.hero-content h1{
    font-size:42px;
}

.blog-container{
    grid-template-columns:2fr 1fr;
}

}



/*=========================
Tablet
=========================*/

@media(max-width:992px){

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:17px;
}

.hero-features{
    grid-template-columns:repeat(2,1fr);
}

.blog-container{
    grid-template-columns:1fr;
}

.blog-sidebar{
    position:relative;
    top:0;
}

.timeline-grid{
    grid-template-columns:1fr;
}

.feature-grid{
    grid-template-columns:1fr;
}

.packing-grid{
    grid-template-columns:repeat(2,1fr);
}

.related-grid{
    grid-template-columns:1fr;
}

.author-box{
    flex-direction:column;
    text-align:center;
}

.hero-meta{
    justify-content:center;
}

}



/*=========================
Mobile
=========================*/

@media(max-width:768px){

.blog-hero{
    padding:70px 0;
}

.hero-content h1{
    font-size:30px;
    line-height:1.4;
}

.hero-content p{
    font-size:16px;
}

.blog-badge{
    font-size:14px;
    padding:10px 18px;
}

.hero-features{
    grid-template-columns:1fr;
}

.hero-meta{
    flex-direction:column;
    align-items:center;
}

.blog-content{
    padding:25px;
}

.blog-content h2{
    font-size:28px;
}

.blog-content h3{
    font-size:22px;
}

.timeline-grid{
    grid-template-columns:1fr;
}

.feature-grid{
    grid-template-columns:1fr;
}

.packing-grid{
    grid-template-columns:1fr;
}

.related-grid{
    grid-template-columns:1fr;
}

.cta-box{
    padding:40px 25px;
}

.cta-box h2{
    font-size:30px;
}

.cta-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
    justify-content:center;
}

.author-box{
    padding:25px;
}

.table-of-content{
    padding:20px;
}

.checklist-box{
    padding:25px;
}

.document-box{
    padding:25px;
}

.highlight-box,
.warning-box,
.info-box{
    padding:25px;
}

}



/*=========================
Small Mobile
=========================*/

@media(max-width:480px){

.hero-content h1{
    font-size:26px;
}

.blog-content{
    padding:20px;
}

.blog-content h2{
    font-size:24px;
}

.blog-content h3{
    font-size:20px;
}

.timeline-card,
.feature-card,
.packing-card,
.related-card,
.sidebar-box{

    padding:20px;

}

.timeline-icon,
.feature-icon{

    width:60px;
    height:60px;
    font-size:24px;

}

.author-icon{

    width:70px;
    height:70px;
    font-size:28px;

}

.breadcrumb .container{

    font-size:13px;

}

}



/*=========================
Smooth Animation
=========================*/

.timeline-card,
.feature-card,
.related-card,
.packing-card,
.sidebar-box,
.faq-item,
.author-box{

transition:.35s ease;

}



/*=========================
Selection
=========================*/

::selection{

background:#ff6600;

color:#fff;

}



/*=========================
Scrollbar
=========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

background:#ff6600;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#e65c00;

}



/*=========================
End
=========================*/