
    /* General Styles */
    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: #ffffff;
        color: #333;
    }

    /* === Custom Styling === */
    #container, #blog {
        padding: 80px 0;
    }

    #company {
        color: #3cb043;
        border-radius: 18px;
        text-align: center;
        background-color: rgba(255, 60, 0, 0.03);
        border: 1px solid rgba(122, 122, 122, 0.15);
        padding: 5px 15px;
        display: inline-block;
        margin-top: 10px;
    }

    .section-title {
        font-size: 42px;
        font-weight: bold;
        color: #072e75;
        margin-top: 20px;
    }

    #solution {
        color: #3cb043;
    }

    #para {
        width: 84%;
        margin: 20px 0;
        line-height: 1.6;
    }

    #best {
        color: #3cb043;
        list-style: none;
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

    #best::before {
        content: "✔";
        color: #072e75;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .cta-button {
        border: none;
        background: #3cb043;
        padding: 12px 24px;
        border-radius: 25px;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .cta-button a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        display: inline-block;
    }

    .cta-button:hover {
        background: #072e75;
        transform: scale(1.05);
    }

    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #image {
        max-width: 100%;
        height: auto;
    }

    /* Projects Section */
    #btn {
        padding: 16px 32px;
        font-weight: 600;
        z-index: 1;
        border-radius: 30px;
        transition: 0.5s;
        background-color: #3cb043;
        cursor: pointer;
        border: none;
        margin-top: 80px;
        float: right;
    }

    #btn a {
        text-decoration: none;
        color: white;
    }

    #btn:hover {
        background: #072e75;
        transform: scale(1.05);
    }

    /* Swiper Slider */
    .swiper-container {
        width: 100%;
        padding: 40px 60px;
        box-sizing: border-box;
    }

    /* Updated card dimensions */
    .swiper-slide {
        width: 475px; /* Fixed width */
        height: 355px; /* Fixed height */
        background: #fff;
        border-radius: 15px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        cursor: pointer;
        display: flex;
        flex-direction: column;
    }
    
    .swiper-slide a {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        height: 100%;
        width: 100%;
    }

    /* Add this to create the linear scroll effect */
    .swiper-wrapper {
        -webkit-transition-timing-function: linear !important;
        -o-transition-timing-function: linear !important;
        transition-timing-function: linear !important;
    }

    /* Adjust for smaller screens */
    @media (max-width: 1200px) {
        .swiper-slide {
            width: 400px;
            height: 320px;
        }
    }
    
    @media (max-width: 992px) {
        .swiper-slide {
            width: 350px;
            height: 300px;
        }
    }
    
    @media (max-width: 768px) {
        .swiper-slide {
            width: 300px;
            height: 280px;
        }
    }
    
    @media (max-width: 576px) {
        .swiper-slide {
            width: 280px;
            height: 260px;
        }
    }

    .swiper-slide:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Updated image styling for full fit */
    .swiper-slide img {
        width: 100%;
        height: 100%; /* Image card ke andar full dikhegi */
        object-fit: contain; /* Crop nahi hogi, full show hogi */
        border-radius: 10px 10px 0 0;
        transition: transform 0.3s ease;
        background: #fff; /* Agar image chhoti ho to background white dikhe */
    }

    .swiper-slide:hover img {
        transform: scale(1.05);
    }

    .slide-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .slide-content h5 {
        font-size: 18px;
        color: #072e75;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .slide-content p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    /* Blog Section */
    #blog {
        background-color: #f4f4f4;
    }

    .blog-cta-btn {
        border: none;
        background: #3cb043;
        padding: 15px 30px;
        border-radius: 35px;
        transition: all 0.3s ease;
        margin-top: 60px;
    }

    .blog-cta-btn a {
        text-decoration: none;
        color: white;
        font-weight: bold;
    }

    .blog-cta-btn:hover {
        background: #072e75;
        transform: scale(1.05);
    }

    .blog-main-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .blog-side-image {
        width: 100%;
        height: 355px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .blog-post-card {
        background-color: #fff;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    #blog-date {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }

    #blog-date i {
        color: #072e75;
    }

    .blog-post-title {
        color: #072e75;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 25px;
    }

    .blog-post-title:hover {
        color: #3cb043;
    }

    .blog-read-more {
        text-decoration: none;
        color: #3cb043;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .blog-read-more i {
        margin-left: 8px;
        transition: margin-left 0.3s ease;
    }

    .blog-read-more:hover {
        color: #072e75;
    }

    .blog-read-more:hover i {
        margin-left: 15px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .section-title {
            font-size: 32px;
        }
        .swiper {
            padding: 20px;
        }
        #btn {
            float: none;
            margin: 20px 0;
        }
        .blog-cta-btn {
            margin-top: 20px;
        }
        .blog-main-image, .blog-side-image {
            height: auto;
        }
    }

    .mx-4 {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    /* Desktop */
    .breadcumb-wrapper {
        height: 500px;
    }
    /* Tablet */
    @media (max-width: 992px) {
        .breadcumb-wrapper {
            height: 400px;
        }
    }
