/* Services Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.services-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.service-item {
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-item-inner {
    background: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.service-item:hover .service-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
        width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    position: relative;
    z-index: 1;
}
.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ececec, #acd5ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.9;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    color: #1d4ed8;
}

.service-title {
    font-size: 20px;
    margin: 0 0 15px;
    color: #1f2937;
    transition: all 0.3s ease;
}

.service-item:hover .service-title {
    color: #2563eb;
}

.service-excerpt {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-link i {
    transform: translateX(5px);
}

div#sidebar h1, div#sidebar h2, div#sidebar h3,
.service-sidebar h1, .service-sidebar h2, .service-sidebar h3{
    position: relative;
    padding-bottom: 0.75rem;
}

div#sidebar h1::after, div#sidebar h2::after, div#sidebar h3::after,
.service-sidebar h1::after, .service-sidebar h2::after, .service-sidebar h3::after {
    /* border-bottom: 1px solid #cdcdcd; */
    /* padding: 0 0 10px; */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .services-grid,
    .services-columns-2,
    .services-columns-3,
    .services-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .service-item-inner {
        padding: 30px 25px;
    }
}

/* Portfolio Styles */
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .portfolio-columns-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .portfolio-columns-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .portfolio-columns-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            aspect-ratio: 1/1;
            height: 100%;
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .portfolio-item-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .portfolio-thumbnail {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .portfolio-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-thumbnail img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: #fff;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay-content h3 {
            color: #fff;
            margin: 0 0 10px;
            font-size: 1.25rem;
        }
        
        .portfolio-category {
            display: block;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
        }
        
        .portfolio-link-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #0073aa;
            color: #fff;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .portfolio-link-icon:hover {
            background: #005177;
            transform: rotate(45deg);
        }
        
        .portfolio-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-thumbnail img {
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay-content {
            text-align: center;
            color: #fff;
            padding: 20px;
        }
        
        .portfolio-overlay h3 {
            color: #fff;
            margin: 0 0 10px;
            font-size: 20px;
        }
        
        .portfolio-category {
            display: block;
            color: #f8f9fa;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .portfolio-link-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: #007bff;
            color: #fff;
            border-radius: 50%;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-link-icon {
            background: #0056b3;
            transform: rotate(45deg);
        }
        
        /* Testimonials Styles */
        .testimonial-slider {
            position: relative;
            padding: 0 15px;
        }
        
        .testimonial-slide {
            padding: 20px;
            text-align: center;
        }
        
        .testimonial-content {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            padding: 0 20px;
        }
        
        .testimonial-text:before,
        .testimonial-text:after {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 60px;
            color: #007bff;
            position: absolute;
            opacity: 0.2;
            line-height: 1;
        }
        
        .testimonial-text:before {
            top: 0;
            left: -10px;
        }
        
        .testimonial-text:after {
            content: '\201D';
            bottom: -20px;
            right: -10px;
        }
        
        .testimonial-rating {
            color: #ffc107;
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-avatar {
            margin-right: 15px;
        }
        
        .testimonial-avatar img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-author-info {
            text-align: left;
        }
        
        .testimonial-name {
            margin: 0 0 5px;
            font-size: 18px;
            color: #333;
        }
        
        .testimonial-position {
            display: block;
            font-size: 14px;
            color: #777;
        }
        
        .testimonial-company {
            font-weight: 600;
            color: #007bff;
        }
        
        .testimonial-nav {
            margin-top: 20px;
            text-align: center;
        }
        
        .testimonial-nav button {
            background: none;
            border: 1px solid #ddd;
            color: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-nav button:hover {
            background: #007bff;
            border-color: #007bff;
            color: #fff;
        }
        
        .testimonial-pagination {
            text-align: center;
            margin-top: 20px;
        }
        
        .slick-dots {
            position: static;
            margin-top: 20px;
        }
        
        .slick-dots li button:before {
            font-size: 12px;
            color: #007bff;
            opacity: 0.5;
        }
        
        .slick-dots li.slick-active button:before {
            opacity: 1;
        }
        
        /* Team Styles */
        .team-grid {
            display: grid;
            grid-gap: 30px;
            margin: 0 -15px;
        }
        
        .team-columns-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .team-columns-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .team-columns-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .team-member {
            position: relative;
            margin-bottom: 30px;
        }
        
        .team-member-inner {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .team-member:hover .team-member-inner {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-thumbnail {
            position: relative;
            overflow: hidden;
        }
        
        .team-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .team-thumbnail img {
            transform: scale(1.05);
        }
        
        .team-social-links {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            text-align: center;
            background: rgba(0, 123, 255, 0.9);
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .team-member:hover .team-social-links {
            bottom: 0;
        }
        
        .team-social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 50%;
            margin: 0 3px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .team-social-links a:hover {
            background: #fff;
            color: #007bff;
            transform: translateY(-3px);
        }
        
        .team-member-info {
            padding: 20px 15px;
            text-align: center;
        }
        
        .team-member-name {
            margin: 0 0 5px;
            font-size: 18px;
            color: #333;
        }
        
        .team-member-position {
            display: block;
            font-size: 14px;
            color: #777;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .team-member-department {
            display: block;
            font-size: 13px;
            color: #007bff;
            font-style: italic;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .portfolio-columns-4,
            .team-columns-4 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .portfolio-columns-3,
            .portfolio-columns-4,
            .team-columns-3,
            .team-columns-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .portfolio-columns-2,
            .portfolio-columns-3,
            .portfolio-columns-4,
            .team-columns-2,
            .team-columns-3,
            .team-columns-4 {
                grid-template-columns: 1fr;
            }
            
            .testimonial-text {
                font-size: 16px;
                padding: 0 10px;
            }
        }
    
    
  