/* =================================
   BLOG STYLES - NoidaShifting.com
   ================================= */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #00adef 0%, #2d5a87 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    opacity: 0.7;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #fff;
}

/* Category Filters */
.blog-categories {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #00adef;
    background: transparent;
    color: #00adef;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00adef;
    color: #fff;
}


/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1e3a5f;
    border-radius: 50%;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: #1e3a5f;
    color: #fff;
}

.page-link.next {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
}

/* Blog CTA Section */
.blog-cta {
    
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.blog-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
    color: black;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================================
   SINGLE BLOG POST STYLES
   ================================= */

.blog-breadcrumb {
    background: #00adef;
    padding: 15px 0;
}

.blog-post-single {
    padding: 40px 0 60px;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Post Header */
.post-header {
    margin-bottom: 30px;
}

.category-tag {
    display: inline-block;
    background: #00adef;
    color: #fff;
    padding: 5px 15px;
    border-radius: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-header h1 {
    font-size: 2.2rem;
    color: #1e3a5f;
    line-height: 1.3;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 25px;
    color: #666;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: #1e3a5f;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 35px;
    border-radius: 15px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

/* Post Content */
.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.post-content h2 {
    font-size: 1.6rem;
    color: #1e3a5f;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00adef;
}

.post-content h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin: 30px 0 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: #00adef;
    text-decoration: none;
    font-weight: 500;
}

.post-content a:hover {
    text-decoration: underline;
}

/* Table of Contents */
.table-of-contents {
    background: #f0f7ff;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #1e3a5f;
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #1e3a5f;
    text-decoration: none;
}

.table-of-contents a:hover {
    color: #ff6b35;
}

/* Info Boxes */
.info-box,
.warning-box {
    padding: 20px 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box {
    background: #e8f4fd;
    border-left: 4px solid #2196f3;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.info-box h4,
.warning-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Checklist Box */
.checklist-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.price-table th {
    background: #1e3a5f;
    color: #fff;
    padding: 15px;
    text-align: left;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Inline CTA */
.cta-inline,
.cta-box-inline {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    color: #fff;
}

.cta-inline p,
.cta-box-inline p {
    margin-bottom: 15px;
}

.cta-box-inline h4 {
    margin-top: 0;
}

/* Service CTA Box */
.service-cta-box {
    background: linear-gradient(135deg, #00adef 0%, #f7931e 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    color: #fff;
}

.cta-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.cta-text h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
}

.cta-text p {
    margin: 0;
    opacity: 0.95;
}

.service-cta-box .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-cta-box .btn {
    white-space: nowrap;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 40px 0;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 10px;
    color: #1e3a5f;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.faq-section h2 {
    border: none !important;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-item h3 {
    margin: 0 0 10px !important;
    font-size: 1.1rem !important;
    color: #1e3a5f;
}

.faq-item p {
    margin: 0;
}

/* =================================
   SIDEBAR STYLES
   ================================= */

.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: #1e3a5f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00adef;
}

/* Quote Widget */
.quote-widget form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-widget input,
.quote-widget select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.quote-widget input:focus,
.quote-widget select:focus {
    outline: none;
    border-color: #1e3a5f;
}

/* Services Widget */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 0;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-list a:hover {
    background: #f0f7ff;
    color: #1e3a5f;
}

.services-list i {
    color: #00adef;
    width: 20px;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #fff;
}

.contact-widget h3 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
}

.contact-item.whatsapp {
    background: #25d366;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ffffff;
    color: #fff;
}

.btn-primary:hover {
    background: #00adef;
}

.btn-secondary {
    
    color: #00adef;
    background-color: transparent;
    border-radius: 3px;
    border: 2px solid #00adef;
}

.btn-secondary:hover {
    background: #00adef;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #1e3a5f;
}

/* =================================
   RESPONSIVE STYLES
   ================================= */

@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

.blog-hero{
    padding: 10px 0 10px;
}

    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 1.6rem;
    }
    
    .service-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-cta-box .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .blog-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th {
    background: #1e3a5f;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.info-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Budget Box */
.budget-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

/* Key Takeaways Box */
.key-takeaways {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
    padding: 25px 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #1e3a5f;
}

.key-takeaways h3 {
    margin-top: 0;
    color: #1e3a5f;
}

.key-takeaways ul {
    margin-bottom: 0;
}

.key-takeaways li {
    margin-bottom: 8px;
}

/* Related Services Grid */
.related-services {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.related-services h3 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.service-card h4 {
    color: #1e3a5f;
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.service-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Services Grid */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 10px;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: #1e3a5f;
    color: #fff;
    padding: 15px;
    text-align: left;
}

.comparison-table th:nth-child(2) {
    background: #dc3545;
}

.comparison-table th:nth-child(3) {
    background: #28a745;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Equipment List */
.equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.equipment-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #ff6b35;
}

.equipment-item h4 {
    color: #1e3a5f;
    margin-top: 0;
    margin-bottom: 10px;
}

.equipment-item > p {
    color: #666;
    margin-bottom: 10px;
}

.equipment-item ul {
    margin: 0;
    padding-left: 20px;
}

.equipment-item li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

/* Step by Step */
.step-by-step {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h4 {
    margin: 0 0 5px;
    color: #1e3a5f;
}

.step-content p {
    margin: 0;
    color: #666;
}

/* Zone Diagram */
.zone-diagram {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.zone {
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.zone h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1rem;
}

.zone ul {
    margin: 0;
    padding-left: 20px;
}

.zone li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.zone-1 {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

.zone-2 {
    background: linear-gradient(135deg, #2d5a87 0%, #3d7ab7 100%);
}

.zone-3 {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.zone-4 {
    background: linear-gradient(135deg, #28a745 0%, #34c759 100%);
}

/* Technique Box */
.technique-box {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #2196f3;
}

.technique-box h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.technique-box ol {
    margin-bottom: 0;
}

/* Mistakes List */
.mistakes-list {
    margin: 30px 0;
}

.mistake-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #dc3545;
}

.mistake-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #dc3545;
}

.mistake-item p {
    margin: 5px 0;
}

.mistake-item p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .zone-diagram {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}

/* Challenges List */
.challenges-list {
    margin: 30px 0;
}

.challenge-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    align-items: flex-start;
}

.challenge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.challenge-content h4 {
    margin: 0 0 5px;
    color: #1e3a5f;
}

.challenge-content p {
    margin: 0;
    color: #666;
}

/* Comparison Box */
.comparison-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.comparison-box h3 {
    margin-top: 0;
    color: #1e3a5f;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b35, #1e3a5f);
}

.process-step {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.process-number {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.process-content h4 {
    margin: 0 0 8px;
    color: #1e3a5f;
}

.process-content p {
    margin: 0;
    color: #555;
}

.process-time {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    background: #e8f4fd;
    color: #1e3a5f;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.equipment-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.equipment-card h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.equipment-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Fragile Items Grid */
.fragile-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.fragile-item {
    background: #fff5f5;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.fragile-item h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.fragile-item ul {
    margin: 0;
    padding-left: 20px;
}

.fragile-item li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Room Guide */
.room-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.placement-order h4,
.placement-tips h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.placement-order ol {
    margin-bottom: 0;
}

.placement-tips ul {
    margin-bottom: 0;
}

/* Assembly Grid */
.assembly-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.assembly-item {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 10px;
}

.assembly-item h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.assembly-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.assembly-item ul {
    margin: 0;
    padding-left: 20px;
}

/* Verification Steps */
.verification-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.verification-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.step-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.verification-step h4 {
    margin: 0 0 5px;
    font-size: 0.95rem;
    color: #1e3a5f;
}

.verification-step p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.safety-item {
    background: #e8f8f5;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.safety-item h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.safety-item ul {
    margin: 0;
    padding-left: 20px;
}

.safety-item li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Package Table */
.package-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.package-table th {
    background: #1e3a5f;
    color: #fff;
    padding: 15px;
    text-align: center;
}

.package-table th:first-child {
    text-align: left;
}

.package-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.package-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.package-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Labeling System */
.labeling-system {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.label-example {
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    min-width: 150px;
}

.label-text {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
}

.label-desc {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Address Update List */
.address-update-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.update-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.update-category h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1e3a5f;
    font-size: 1rem;
}

.update-category ul {
    margin: 0;
    padding-left: 20px;
}

.update-category li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .address-update-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verification-steps {
        flex-wrap: wrap;
    }
    
    .verification-step {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-number {
        left: -40px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .fragile-items-grid,
    .assembly-grid,
    .room-guide {
        grid-template-columns: 1fr;
    }
    
    .labeling-system {
        flex-direction: column;
        align-items: center;
    }
    
    .label-example {
        width: 100%;
        max-width: 200px;
    }
    
    .address-update-list {
        grid-template-columns: 1fr;
    }
    
    .verification-step {
        flex: 1 1 100%;
    }
    
    .challenge-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Blog Section */
.blog-posts-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Grid - Stack Cards Vertically */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Blog Card - Horizontal Layout */
.blog-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   
}

.blog-card:hover {
   
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Left Side - Content (60% width) */
.blog-card-content {
    flex: 0 0 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Side - Image (40% width) */
.blog-card-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.blog-card-image a {
    display: block;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}



.blog-card.hide{
    display: none;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background-color: #00adef;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    width: fit-content;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #00adef;
}

/* Blog Title */
.blog-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-title a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #00adef;
}

/* Blog Excerpt */
.blog-excerpt {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Card Footer */
.blog-card-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00adef;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}



/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00adef;
    padding: 12px 20px;
    border: 2px solid #00adef;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #00adef;
    color: #ffffff;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .blog-card-content {
        flex: 0 0 55%;
        padding: 25px;
    }
    
    .blog-card-image {
        flex: 0 0 45%;
    }
    
    .blog-title {
        font-size: 20px;
    }
}

/* Mobile - Stack Vertically */
@media (max-width: 768px) {
    .blog-card {
        flex-direction: column-reverse; /* Image on top, content below */
    }
    
    .blog-card-content {
        flex: 1;
        padding: 20px;
    }
    
    .blog-card-image {
        flex: none;
        height: 200px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-card-footer {
        flex-direction: column;
    }
    
    .read-more-btn,
    .service-link {
        text-align: center;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .blog-card-content {
        padding: 15px;
    }
}



/* Storage Types Grid */
.storage-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.storage-type-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff6b35;
}

.storage-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.storage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.storage-type-card h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.storage-type-card > p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.storage-type-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.storage-type-card li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.storage-type-card li:last-child {
    border-bottom: none;
}

/* Scenario Box */
.scenario-box {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #1e3a5f;
}

.scenario-box h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.scenario-box ul {
    margin-bottom: 10px;
}

.scenario-box em {
    color: #666;
    font-size: 0.9rem;
}

/* Factors Grid */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.factor-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.factor-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.factor-card h4 {
    color: #1e3a5f;
    margin-bottom: 8px;
}

.factor-card > p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.factor-checklist {
    text-align: left;
}

.factor-checklist span {
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    color: #27ae60;
}

/* Questions List */
.questions-list {
    margin: 30px 0;
}

.question-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    align-items: flex-start;
}

.q-number {
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.q-content h4 {
    margin: 0 0 5px;
    color: #1e3a5f;
}

.q-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Size Guide */
.size-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.size-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.size-header {
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-small .size-header { background: #3498db; }
.size-medium .size-header { background: #27ae60; }
.size-large .size-header { background: #f39c12; }
.size-xlarge .size-header { background: #e74c3c; }
.size-warehouse .size-header { background: #9b59b6; }

.size-dimension {
    font-size: 1.2rem;
    font-weight: bold;
}

.size-name {
    font-size: 0.9rem;
    opacity: 0.9;
}

.size-visual {
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    background: #f8f9fa;
}

.size-content {
    padding: 20px;
}

.size-content h4 {
    margin-top: 0;
    color: #1e3a5f;
}

.size-content ul {
    margin: 0 0 15px;
    padding-left: 20px;
}

.size-content li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.size-ideal {
    margin: 0;
    padding: 10px;
    background: #e8f4fd;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Packing Rules */
.packing-rules {
    margin: 30px 0;
}

.rule-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    align-items: flex-start;
}

.rule-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.rule-content h4 {
    margin: 0 0 5px;
    color: #1e3a5f;
}

.rule-content p {
    margin: 0;
    color: #666;
}

/* Item Packing Grid */
.item-packing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.packing-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.packing-category h4 {
    margin-top: 0;
    color: #1e3a5f;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
    margin-bottom: 15px;
}

.packing-category ul {
    margin: 0;
    padding-left: 20px;
}

.packing-category li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Climate Info */
.climate-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.climate-feature {
    background: linear-gradient(135deg, #e8f4fd, #f0f7ff);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.climate-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.climate-content h4 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.climate-content p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

