.service-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            width: 100%;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-top: 30px;
            align-items: start;
        }

        .main-content {
            /* background: rgb(236, 59, 59); */
            border-radius: 12px;
            overflow: hidden;
            padding-top: 0;
            margin-top: -10px;
            /* box-shadow: 0 2px 10px rgba(12, 44, 71, 0.1); */
        }

        .article-content {
            padding: 0 25px 25px 25px; 
            margin-top: -100;
        }
      

        .sidebar {
            position: sticky;
            top: 70px;
            align-self: start;
        }

        .sidebar-section {
            background: white;
            margin-top: 12px;
            border-radius: 12px;
            padding: 12px 25px 12px 25px; 
            box-shadow: 0 2px 10px rgba(12, 44, 71, 0.1);
        }

        .sidebar-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0C2C47;
        }

        .sidebar-list {
            display: flex;
            margin-top: 12px;
            flex-direction: column;
            gap: 15px;
        }

        .top-story-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 5px;
            box-shadow: 0 2px 8px rgba(12, 44, 71, 0.1);
            display: flex;
            gap: 15px;
            padding: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            border: 1px solid #E4F2EA;
        }

        .top-story-card:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(12, 44, 71, 0.15);
            border-color: #2D5652;
        }

        .story-image {
            width: 120px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

        .story-content {
            flex: 1;
        }

        .story-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #0C2C47;
            line-height: 1.4;
        }

        .story-meta {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 13px;
            color: #2D5652;
        }

        .meta-item {
            display: flex;
            align-items: center;
            margin-top:-10px;
            /* gap: 5px; */
            font-size: 16px;
        }

        .meta-item i {
            color: #2D5652;
        }

        @media (max-width: 968px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }

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

        @media (max-width: 600px) {
            .top-story-card {
                flex-direction: column;
            }

            .story-image {
                width: 100%;
                height: 180px;
            }
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #0C2C47;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(12, 44, 71, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top:hover {
            background: #2D5652;
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(12, 44, 71, 0.5);
        }

        .scroll-top.show {
            display: flex;
        }

        .service-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%; /* ensures container uses full width on small screens */
}

@media (max-width: 968px) {
    .service-container {
        padding: 20px 15px; /* reduce padding on smaller screens */
    }
}

@media (max-width: 600px) {
    .service-container {
        padding: 15px 10px; /* even smaller padding on mobile */
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 15px;
    }

    .article-content {
        padding: 0 10px 15px 10px;
    }

    .sidebar-section {
        padding: 10px 15px;
    }

    .story-image {
        width: 100%;
        height: 180px;
    }

    .story-content {
        padding: 0;
    }
}

   .cf-container{
            padding-top:100px;
        }
