     .custom-section {
        
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 60px 0;
            overflow: hidden;
        }
       
        
        /* Header Styles */
        .custom-section .section-header {
            text-align: center;
            margin-bottom: 0px;
            position: relative;
        }
        
        
        
        .custom-section .section-title {
       color: var(--headingcolor);
    text-align: center;
    font-size: 40px;
    font-family: poppinsbold;
    padding-bottom: 13px;
        }
        
        .custom-section .section-subtitle {
            font-size: 18px;
            color: #000;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        /* Services Label */
        .custom-section .services-label {
            text-align: center;
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        /* Tab Navigation */
        .custom-section .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .custom-section .tab-button {
            display: inline-flex;
            align-items: center;
            padding: 16px 32px;
            font-size: 1.125rem;
            font-weight: 600;
            background: #ffffff;
            color: #000;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .custom-section .tab-button i {
            margin-right: 10px;
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }
        
        .custom-section .tab-button:hover {
            border-color: #11559b;
            color: #11559b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(17, 85, 155, 0.15);
        }
        
        .custom-section .tab-button:hover i {
            transform: scale(1.1);
        }
        
        .custom-section .tab-button.active {
            background: linear-gradient(135deg, #11559b 0%, #1976d2 100%);
            color: #ffffff;
            border-color: #11559b;
            box-shadow: 0 6px 20px rgba(17, 85, 155, 0.25);
        }
        
        .custom-section .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 3px;
            background: #f7c812;
        }
        
        /* Tab Content */
        .custom-section .tab-content-wrapper {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .custom-section .tab-content-wrapper.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .custom-section .content-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .custom-section .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #f7c812 0%, #11559b 100%);
        }
        
        .custom-section .content-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .custom-section .content-left {
            flex: 1;
        }
        
        .custom-section .content-right {
            flex: 0 0 45%;
        }
        
        .custom-section .content-image {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .custom-section .content-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .custom-section .content-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            flex-shrink: 0;
        }
        
        .custom-section .response-management .content-icon {
            background: linear-gradient(135deg, #f7c812 0%, #ffd54f 100%);
            color: #000000;
        }
        
        .custom-section .reputation-management .content-icon {
            background: linear-gradient(135deg, #11559b 0%, #1976d2 100%);
            color: #ffffff;
        }
        
        .custom-section .content-title {
            font-size: 2rem;
            font-weight: 700;
            color: #000000;
            margin: 0;
            line-height: 1.3;
        }
        
        .custom-section .content-description {
       
            color: #000;
            line-height: 1.8;
            margin-bottom: 35px;
        }
        
        .custom-section .content-details {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 35px;
        }
        
        .custom-section .content-details p {
            font-size: 1rem;
            color: #495057;
            line-height: 1.8;
            margin: 0;
        }
        
        .custom-section .content-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
        }
        
        /* Button Styles */
        .custom-section .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 16px 36px;
            font-size: 1.0625rem;
            font-weight: 600;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .custom-section .btn-primary-custom {
            background: #f7c812;
            color: #000000;
            box-shadow: 0 4px 15px rgba(247, 200, 18, 0.3);
        }
        
        .custom-section .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #11559b;
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .custom-section .btn-primary-custom:hover {
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(17, 85, 155, 0.4);
        }
        
        .custom-section .btn-primary-custom:hover::before {
            width: 100%;
        }
        
        .custom-section .btn-secondary-custom {
            background: #11559b;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(17, 85, 155, 0.3);
        }
        
        .custom-section .btn-secondary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #f7c812;
            transition: width 0.3s ease;
            z-index: -1;
        }
        
        .custom-section .btn-secondary-custom:hover {
            color: #000000;
            box-shadow: 0 6px 20px rgba(247, 200, 18, 0.4);
        }
        
        .custom-section .btn-secondary-custom:hover::before {
            width: 100%;
        }
        
        .custom-section .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .custom-section .cta-button:hover i {
            transform: translateX(4px);
        }
        
        /* Badge Styles */
        .custom-section .experience-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #11559b 0%, #1976d2 100%);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9375rem;
            font-weight: 600;
        }
        
        .custom-section .experience-badge i {
            margin-right: 8px;
            font-size: 1.125rem;
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .custom-section {
                padding: 60px 0;
            }
            
            .custom-section .section-title {
                font-size: 2rem;
            }
            
            .custom-section .content-card {
                padding: 40px 30px;
            }
            
            .custom-section .content-title {
                font-size: 1.75rem;
            }
        }
        
        @media (max-width: 767px) {
            .custom-section {
                padding: 40px 0;
            }
            
            .custom-section .section-header {
                margin-bottom: 40px;
            }
            
            .custom-section .section-title {
                font-size: 1.75rem;
            }
            
            .custom-section .section-subtitle {
                font-size: 1rem;
            }
            
            .custom-section .tab-navigation {
                flex-direction: column;
                gap: 12px;
            }
            
            .custom-section .tab-button {
                width: 100%;
                justify-content: center;
                padding: 14px 24px;
                font-size: 1rem;
            }
            
            .custom-section .content-card {
                padding: 30px 20px;
            }
            
            .custom-section .content-wrapper {
                flex-direction: column;
                gap: 30px;
            }
            
            .custom-section .content-right {
                flex: 1;
                width: 100%;
            }
            
            .custom-section .content-image {
                height: 300px;
            }
            
            .custom-section .content-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .custom-section .content-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .custom-section .content-title {
                font-size: 1.5rem;
            }
            
            .custom-section .content-description {
                font-size: 1rem;
            }
            
            .custom-section .content-details {
                padding: 20px;
            }
            
            .custom-section .content-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .custom-section .cta-button {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 575px) {
            .custom-section .section-title {
                font-size: 1.5rem;
            }
            
            .custom-section .content-card {
                padding: 24px 16px;
            }
        }

         .logo-more-service-wrapper {
    background: #f8f8f8;
    padding: 60px 0;
    position: relative;
}

.logo-more-service-wrapper .section-header {
    text-align: center;
    margin-bottom: 29px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0 !important;
}

        .logo-more-service-wrapper .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .logo-more-service-wrapper .section-subtitle {
            font-size: 1.125rem;
            color: #000;
            line-height: 1.8;
            font-weight: 400;
        }

        .logo-more-service-wrapper .service-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 45px 35px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 1px solid #e8e8e8;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .logo-more-service-wrapper .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #f5c400;
            transition: width 0.4s ease;
        }

        .logo-more-service-wrapper .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
            border-color: #f5c400;
        }

        .logo-more-service-wrapper .service-card:hover::before {
            width: 100%;
        }

        .logo-more-service-wrapper .icon-wrapper {
            width: 70px;
            height: 70px;
            background: #ffffff;
            border: 2px solid #0b559b;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: all 0.3s ease;
        }

        .logo-more-service-wrapper .service-card:hover .icon-wrapper {
            background: #0b559b;
            border-color: #0b559b;
            transform: scale(1.05);
        }

        .logo-more-service-wrapper .icon-wrapper svg {
            width: 32px;
            height: 32px;
            fill: #0b559b;
            transition: fill 0.3s ease;
        }

        .logo-more-service-wrapper .service-card:hover .icon-wrapper svg {
            fill: #ffffff;
        }

        .logo-more-service-wrapper .service-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .logo-more-service-wrapper .service-description {
            font-size: 1rem;
            color: #666666;
            line-height: 1.75;
            margin: 0;
            font-weight: 400;
        }

        @media (max-width: 992px) {
            .logo-more-service-wrapper {
                padding: 80px 0;
            }

            .logo-more-service-wrapper .section-header {
                margin-bottom: 60px;
            }

            .logo-more-service-wrapper .section-title {
                font-size: 2.25rem;
            }
        }

        @media (max-width: 768px) {
            .logo-more-service-wrapper {
                padding: 60px 0;
            }

            .logo-more-service-wrapper .section-title {
                font-size: 1.875rem;
            }

            .logo-more-service-wrapper .section-subtitle {
                font-size: 1rem;
            }

            .logo-more-service-wrapper .service-card {
                padding: 35px 25px;
            }
        }

        .logo-more-service-wrapper .col-lg-4:nth-child(odd)  .service-card {
    background: #000000;
}

.logo-more-service-wrapper .col-lg-4:nth-child(odd) .service-card h3.service-title {
    color: #fff;
}

.logo-more-service-wrapper .col-lg-4:nth-child(odd) .service-card p {
    color: #fff;
}

.logo-more-service-wrapper .col-lg-4:nth-child(odd) .service-card .icon-wrapper {
    background: #f7c812;
    border: 1px solid #fff;
    color: #fff !important;
}

.logo-more-service-wrapper .col-lg-4:nth-child(odd) .service-card .icon-wrapper  svg {
    color: #000 !important;
    fill: #000;
}section.blog-section {
    background: #ffffff;
}

        


        .blog-section .section-title {
    font-size: 48px;
    font-weight: 800 !important;
    text-align: center;
    margin-bottom: 50px;
    color: #0f172a;
    position: relative
}

.blog-section .blog-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / .06);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column
}

.blog-section .blog-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgb(0 0 0 / .12)
}

.blog-section .blog-image {
    position: relative;
    height: 320px;
    overflow: hidden
}

.blog-section .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease
}

.blog-section .blog-card:hover .blog-image img {
    transform: scale(1.15)
}

.blog-section .blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(17 85 155 / .7), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease
}

.blog-section .blog-card:hover .blog-overlay {
    opacity: 1
}

.blog-section .card-body {
    padding: 27px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 !important;
    padding-bottom: 30px
}

.blog-section .blog-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-section .blog-card:hover .blog-title {
    color: #11559b
}

.blog-section .blog-meta {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 32px
}

.blog-section .card-body a.theme-btn {
    display: inline-flex;
    width: auto !important;
    align-items: center;
    min-width: 100px !important;
    width: 175px !important
}

.blog-section .btn-read {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #fff0;
    border: 2px solid #f9cf2f;
    color: #11559b;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    align-self: flex-start
}

.blog-section .btn-read:hover {
    background: #f9cf2f;
    color: #11559b;
    transform: translateX(10px)
}

.blog-section .btn-read::after {
    content: 'Ã¢â€ â€™';
    font-size: 1.4rem;
    transition: transform 0.3s ease
}

.blog-section .btn-read:hover::after {
    transform: translateX(6px)
}

@media (max-width:992px) {
    .blog-section .section-title {
        font-size: 3rem;
        margin-bottom: 80px
    }
    .blog-section .blog-card {
        margin-bottom: 50px
    }
    .blog-section .blog-title {
        font-size: 1.5rem
    }
    .blog-section .card-body {
        padding: 36px
    }
}