/* VectorChunk Widget Global Styles */

/* Enforce link styles reset within widgets */
.vc-reset a {
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Button overrides */
.vc-btn {
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Primary Button (Red) */
/* Primary Button (Red) */
.vc-btn-primary {
    color: white !important;
    background-color: rgb(225, 29, 72) !important;
    padding: 0.75rem 2rem !important;
    border-radius: 0.5rem !important;
    font-weight: 700 !important;
    transition: background-color 0.2s !important;
    box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.2), 0 4px 6px -4px rgba(225, 29, 72, 0.2) !important;
}

.vc-btn-primary:hover {
    background-color: rgb(190, 18, 60) !important;
}

/* Secondary Button (Gray/White) */
.vc-btn-secondary {
    color: rgb(55, 65, 81) !important;
    background-color: rgb(249, 250, 251) !important;
    text-decoration: none !important;
}

.vc-btn-secondary:hover {
    background-color: rgb(243, 244, 246) !important;
}

@media (max-width: 540px) {
    h2 {
        font-size: 1.75rem !important;
    }
    .vc-hero-buttons .vc-btn-secondary {
        padding: .5rem .75rem !important;
    }
    .vc-btn-primary {
        padding: .5rem .75rem !important;
        margin-right: 10px !important;
        margin-bottom: 20px !important;
    }
    .vc-post-title{
        font-size: 1rem !important;
    }
    .vc-footer{
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
    .vc-hero-grid {
        gap: 2rem !important;
    }
    .vc-process-section, .vc-testimonial-section, .vc-pricing-section, .vc-contact-section, .vc-recent-posts-section, .vc-testimonials-section, .vc-our-services-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .vc-faq-list {
        padding: 0 1rem !important;
    }
}

/* Black Button */
.vc-btn-black {
    color: white !important;
    background-color: black !important;
    text-decoration: none !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2) !important;
}

.vc-btn-black:hover {
    background-color: rgb(31, 41, 55) !important;
}

/* Red Button */
.vc-btn-red {
    color: white !important;
    background-color: rgb(225, 29, 72) !important;
    text-decoration: none !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2) !important;
}

.vc-btn-red:hover {
    background-color: rgb(200, 25, 64) !important;
}

/* Text Overrides */
.vc-title-red {
    color: rgb(225, 29, 72) !important;
}

.vc-title-black {
    color: black !important;
}

.vc-text-gray {
    color: rgb(75, 85, 99) !important;
}

.vc-link-red {
    color: rgb(225, 29, 72) !important;
    text-decoration: none !important;
}

.vc-link-red:hover {
    color: rgb(190, 24, 61) !important;
}

.vc-link-black {
    color: black !important;
    text-decoration: none !important;
}

.vc-link-black:hover {
    color: rgb(55, 65, 81) !important;
}

/* Image Utilities */
.vc-testimonial-img {
    width: 3rem !important;
    height: 3rem !important;
    border-radius: 9999px !important;
    object-fit: cover !important;
}

.vc-process-icon {
    height: 8rem !important;
    width: auto !important;
}

/* Hero Widget 2 Styles */
.vectorchunk-hero-two .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.vectorchunk-hero-two .slide {
    transition: opacity 0.5s ease-in-out;
}

.vectorchunk-hero-two .slide.active {
    opacity: 1;
}

/* Service Portfolio Modal Styles */
.vectorchunk-portfolio .vc-portfolio-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75) !important;
    padding: 1rem !important;
}

.vectorchunk-portfolio .vc-portfolio-modal.active {
    display: flex !important;
}

.vectorchunk-portfolio .vc-portfolio-modal-content {
    width: 100%;
    height: 100%;
    display: flex;

    flex-direction: column;
    background-color: transparent !important;
}

.vectorchunk-portfolio .vc-modal-header {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 1rem !important;
}

.vectorchunk-portfolio .vc-modal-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: white !important;
    text-align: center;
}

.vectorchunk-portfolio .vc-modal-close-btn {
    color: white !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    z-index: 50;
    justify-self: end;
}

.vectorchunk-portfolio .vc-modal-close-btn:hover {
    color: #d1d5db !important;
}

/* Portfolio Grid Item Hover */
.vectorchunk-portfolio .project-trigger {
    cursor: pointer;
}

.vectorchunk-portfolio .project-trigger img {
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    height: 14rem;
}

.vectorchunk-portfolio .project-trigger:hover img {
    opacity: 0.75;
}

/* Portfolio Modal Image */
.vc-portfolio-modal-img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0.5rem !important;
}

/* Hero Widget 1 Styles */
.vectorchunk-hero .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.vectorchunk-hero .slide {
    transition: opacity 0.5s ease-in-out;
}

.vectorchunk-hero .slide.active {
    opacity: 1;
}

/* Sub Services Widget Styles */
.vc-sub-services-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .vc-sub-services-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.vc-sub-services-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-sub-services-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-sub-services-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-sub-services-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

.vc-sub-services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-sub-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .vc-sub-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.vc-sub-service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.vc-sub-service-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.vc-sub-service-img {
    width: 100% !important;
    height: 12rem !important;
    object-fit: cover !important;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem !important;
}

.vc-sub-service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vc-sub-service-desc {
    color: #4b5563;
    margin-bottom: 1rem;
}

.vc-sub-service-features {
    font-size: 0.875rem;
    color: #4b5563;
}

.vc-sub-service-features li {
    margin-bottom: 0.5rem;
}

.vc-sub-service-price-wrapper {
    padding-top: 1rem;
}

.vc-sub-service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(225, 29, 72);
}

.vc-sub-service-price-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Hero Widget 2 Styles (Refactored) */
.vc-hero-two-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .vc-hero-two-section {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

.vc-hero-two-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-hero-two-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-hero-two-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-hero-two-flex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4rem;
}

@media (min-width: 768px) {
    .vc-hero-two-flex {
        flex-direction: row;
        gap: 4rem;
    }
}

.vc-hero-two-column {
    width: 100%;
}

@media (min-width: 768px) {
    .vc-hero-two-column {
        width: 50%;
    }
}

.vc-hero-two-content {
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .vc-hero-two-content {
        text-align: left;
        margin-bottom: 0;
    }
}

.vc-hero-two-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .vc-hero-two-title {
        font-size: 3rem;
    }
}

.vc-hero-two-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.vc-hero-two-carousel-wrapper {
    position: relative !important;
    height: 0 !important;
    padding-bottom: 56.25% !important;
}

.vc-hero-two-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transition: opacity 0.5s ease-in-out !important;
    opacity: 0;
}

.vc-hero-two-slide.active {
    opacity: 1;
}

.vc-hero-two-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
}

.vc-hero-two-nav {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vc-hero-two-nav-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    background-color: #9ca3af;
    transition: background-color 0.2s;
}

.vc-hero-two-nav-dot:hover {
    background-color: #4b5563;
}

.vc-hero-two-nav-dot.active {
    background-color: #1f2937;
}

/* Service Portfolio Widget Styles (Refactored) */
.vc-portfolio-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .vc-portfolio-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.vc-portfolio-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-portfolio-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-portfolio-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-portfolio-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.vc-portfolio-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 800;
    color: #111827;
}

.vc-portfolio-heading-desc {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
}

.vc-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .vc-portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.vc-portfolio-item-wrapper {
    position: relative;
}

.vc-portfolio-img-wrapper {
    width: 100% !important;
    height: 16rem !important;
    overflow: hidden !important;
    border-radius: 0.5rem !important;
    background-color: #e5e7eb !important;
}

.vc-portfolio-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: opacity 0.3s !important;
}

.vc-portfolio-item-title {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.vc-portfolio-item-desc {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #4b5563;
}

/* Comparison Slider Widget Styles */
.vc-comparison-section {
    position: relative;
    padding: 1rem 0;
}

.vc-comparison-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 3rem;
}

.vc-comparison-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.vc-comparison-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.vc-comparison-desc {
    color: #4b5563;
    font-size: 1.125rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.vc-comparison-grid-wrapper {
    margin-top: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.vc-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.vc-comparison-img-card {
    padding: 1rem;
    border-radius: 0.5rem;
}

.vc-comparison-image-container {
    position: relative;
}

.vc-comparison-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.vc-comparison-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.vc-comparison-preview-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.25rem;
}

.vc-comparison-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.vc-comparison-thumb-trigger {
    cursor: pointer;
}

.vc-comparison-thumb-img {
    height: 6rem;
    width: 6rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: white;
    padding: 0.25rem;
    border-radius: 0.75rem !important;
    transition: all 0.2s !important;
    border: 2px solid transparent !important;
}

.vc-comparison-thumb-img.active,
.vc-comparison-thumb-img:hover {
    border-color: #5ba4e6 !important;
}

.vc-comparison-thumb-img.active {
    border-width: 2px;
}

.vc-comparison-thumb-img:hover {
    border-width: 2px;
    border-color: #b7d5f5 !important;
}

.vc-comparison-button-wrapper {
    margin-top: 3rem;
    text-align: center;
}

/* FAQ Widget Styles */
.vc-faq-section {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
}

.vc-faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #111827;
}

.vc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vc-faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.vc-faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.vc-faq-answer {
    color: #4b5563;
}

/* Contact Section Widget Styles */
.vc-contact-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-contact-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-contact-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vc-contact-form-col {
    width: 100%;
    max-width: 28rem;
}

.vc-contact-header {
    margin-bottom: 1.5rem;
}

.vc-contact-title {
    font-size: 1.5rem;
    /* 2xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.vc-contact-desc {
    color: #4b5563;
}

.vc-contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vc-contact-info-col {
    padding: 2rem;
}

.vc-contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.vc-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vc-contact-info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.vc-contact-info-value {
    color: #4b5563;
}

/* Pricing Plans Widget Styles */
.vc-pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    max-width: 68rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 640px) {
    .vc-pricing-grid {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .vc-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1024px) {
    .vc-pricing-grid {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

.vc-pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
    border: 1px solid transparent;
    width: 100% !important;
    box-sizing: border-box !important;
}

.vc-pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.vc-pricing-card.popular {
    border: 2px solid rgb(225, 29, 72);
}

.vc-pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(225, 29, 72);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.vc-pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.vc-pricing-price-wrapper {
    margin-bottom: 1.5rem;
}

.vc-pricing-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
}

.vc-pricing-period {
    color: #4b5563;
    margin-left: 0.25rem;
}

.vc-pricing-desc {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.vc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vc-pricing-feature-item {
    display: flex;
    align-items: center;
    color: #4b5563;
}

.vc-pricing-feature-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: rgb(225, 29, 72);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.vc-pricing-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.2s;
}

/* Hero Widget 1 Styles */
.vc-hero-section {
    position: relative;
    overflow: hidden;
}

.vc-hero-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 4rem !important;
    padding-bottom: 6rem !important;
}

@media (min-width: 1024px) {
    .vc-hero-container {
        padding-top: 6rem;
        padding-bottom: 8rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 640px) {
    .vc-hero-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 540px) {
    .vc-hero-container {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
}

.vc-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .vc-hero-grid {
        gap: 4rem;
        grid-template-columns: 1fr 1fr;
    }
}

.vc-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 575px;
}

.vc-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #111827;
}

@media (min-width: 640px) {
    .vc-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .vc-hero-title {
        font-size: 3.75rem;
    }
}

.vc-hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.625;
}

.vc-hero-slider-wrapper {
    position: relative;
    /* height: 220px; Removed for responsiveness */
    aspect-ratio: 560 / 220;
    width: 100%;
    max-width: 100%;
    /* Changed from 560px for better responsiveness */
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    overflow: hidden;
}

@media (min-width: 768px) {
    .vc-hero-slider-wrapper {
        max-width: 560px;
    }
}

/* Recent Posts Widget Styles */
.vc-recent-posts-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .vc-recent-posts-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.vc-recent-posts-container {
    max-width: 64rem;
    /* 5xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-recent-posts-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-recent-posts-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-recent-posts-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.vc-recent-posts-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.vc-recent-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-recent-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vc-post-card {
    background-color: #f9fafb;
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s;
    cursor: pointer;
}

.vc-post-card:hover {
    background-color: #f3f4f6;
    /* gray-100 */
}

.vc-post-thumb-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    width: 105px;
    height: 105px;
    flex-shrink: 0;
}

.vc-post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vc-post-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.vc-post-title a {
    color: black;
    text-decoration: none;
}

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

.vc-post-excerpt {
    font-size: 0.875rem;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vc-recent-posts-btn-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* Services Widget Styles */
.vc-services-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-services-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-services-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.vc-filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: #4b5563;
    cursor: pointer;
}

.vc-filter-btn:hover {
    border-color: black;
    color: black;
}

.vc-filter-btn.active {
    background-color: black;
    color: white;
    border-color: black;
}

.vc-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .vc-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.vc-service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.vc-service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.vc-service-thumb-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid #f3f4f6;
}

.vc-service-thumb {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.vc-service-thumb:hover {
    transform: scale(1.05);
}

.vc-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.vc-service-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    text-align: justify;
}

.vc-service-features {
    color: #4b5563;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vc-service-feature-item {
    display: flex;
    align-items: center;
}

.vc-service-feature-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: rgb(225, 29, 72);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.vc-service-link {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.vc-service-link:hover {
    background-color: #1f2937;
}

/* Simple CTA Widget Styles */
.vc-cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #111827;

}

@media (min-width: 1024px) {
    .vc-cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.vc-cta-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .vc-cta-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-cta-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.vc-cta-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.vc-cta-btn {
    display: inline-block;
    background-color: white;
    color: #111827;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.2s;
    text-decoration: none;
}

.vc-cta-btn:hover {
    background-color: #f3f4f6;
}

/* Testimonials Widget Styles */
.vc-testimonials-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .vc-testimonials-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.vc-testimonials-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-testimonials-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-testimonials-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vc-testimonials-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vc-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .vc-testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.vc-testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.vc-testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.vc-testimonial-header-flex {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.vc-testimonial-img-wrapper {
    flex-shrink: 0;
}

.vc-testimonial-img {
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 0 0 2px white, 0 0 0 3px #d1d5db;
}

.vc-testimonial-content {
    margin-left: 1rem;
}

.vc-testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.vc-testimonial-job {
    color: #4b5563;
    margin: 0;
    font-size: 0.875rem;
}

.vc-testimonial-quote {
    color: #4b5563;
}

/* Process Steps Widget Styles */
.vc-process-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .vc-process-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.vc-process-container {
    max-width: 78rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.vc-process-steps-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .vc-process-steps-wrapper {
        flex-direction: row;
    }
}

.vc-process-step {
    flex: 1;
    text-align: center;
    width: 100%;
}

.vc-process-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    max-height: 150px;
    object-fit: contain;
}

.vc-process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vc-process-step-desc {
    color: #4b5563;
}

.vc-process-connector {
    display: none;
    width: 8rem;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 6.875rem;
}

@media (min-width: 768px) {
    .vc-process-connector {
        display: block;
    }
}

/* Pricing Offer Widget Styles */
.vc-pricing-offer-card {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, #f9fafb, #f3f4f6);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.vc-pricing-offer-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .vc-pricing-offer-flex {
        flex-direction: row;
    }
}

.vc-pricing-offer-content {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .vc-pricing-offer-content {
        margin-bottom: 0;
        margin-right: 2rem;
    }
}

.vc-pricing-offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vc-pricing-offer-desc {
    color: #4b5563;
    margin-bottom: 1rem;
}

.vc-pricing-offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vc-pricing-offer-feature-item {
    display: flex;
    align-items: center;
}

.vc-pricing-offer-price-col {
    text-align: center;
}

@media (min-width: 768px) {
    .vc-pricing-offer-price-col {
        text-align: right;
    }
}

.vc-pricing-offer-amount {
    font-size: 1.875rem;
    font-weight: 700;
}

.vc-pricing-offer-period {
    color: #4b5563;
}

.vc-pricing-offer-btn {
    display: inline-block;
    background-color: rgb(225, 29, 72);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
}

.vc-pricing-offer-btn:hover {
    background-color: rgb(200, 25, 64);
}

/* Our Services Widget Styles */
.vc-our-services-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .vc-our-services-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.vc-our-services-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .vc-our-services-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vc-our-services-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.vc-our-services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

@media (min-width: 768px) {
    .vc-our-services-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

.vc-our-service-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
    border: 1px solid transparent;
}

.vc-our-service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.vc-our-service-img-wrapper {
    position: relative;
    height: 14rem !important;
    overflow: hidden !important;
}

.vc-our-service-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s;
}

.vc-our-service-card:hover .vc-our-service-img {
    transform: scale(1.1);
}

.vc-our-service-content {
    padding: 1.5rem;
}

.vc-our-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vc-our-service-desc {
    color: #4b5563;
    margin-bottom: 1rem;
}

.vc-our-service-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: rgb(225, 29, 72);
    text-decoration: none;
    transition: color 0.2s;
}

.vc-our-service-link:hover {
    color: rgb(200, 25, 64);
}

/* Section Title Widget Styles */
.vc-section-title-wrapper {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem !important;
}

.vc-section-title-text {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: rgb(225, 29, 72) !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.vc-section-desc-text {
    color: rgb(75, 85, 99) !important;
    font-size: 1.125rem !important;
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* T-Shirt Flip Widget Styles */
.vc-tshirt-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.vc-tshirt-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 0.5rem !important;
    box-shadow: 3px 3px 15px 5px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s;
}

.vc-tshirt-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.vc-tshirt-img.active {
    opacity: 1;
}

.vc-tshirt-controls {
    text-align: center;
    margin-top: 1rem;
}

.vc-tshirt-btn {
    padding: 0.5rem 1rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.vc-tshirt-btn:hover {
    background-color: #374151;
}

/* Before/After Slider Widget Styles */
.vc-ba-slider-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.vc-ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #e5e7eb;
}

.vc-ba-slider-after,
.vc-ba-slider-before {
    position: absolute;
    inset: 0;
}

.vc-ba-slider-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vc-ba-slider-before {
    clip-path: inset(0 50% 0 0);
}

.vc-ba-slider-label {
    position: absolute;
    bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    pointer-events: none;
}

.vc-ba-slider-label-before {
    left: 1rem;
}

.vc-ba-slider-label-after {
    right: 1rem;
}

.vc-ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.vc-ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.vc-ba-slider-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #374151;
    transform: rotate(90deg);
}

.vc-ba-slider-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

/* Image Carousel Widget Styles */
.vc-carousel-wrapper {
    max-width: 48rem;
    margin: 0 auto;
}

.vc-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #e5e7eb;
}

.vc-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.vc-carousel-slide.active {
    opacity: 1;
}

.vc-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vc-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.vc-carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: #9ca3af;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
}

.vc-carousel-dot:hover {
    background-color: #6b7280;
}

.vc-carousel-dot.active {
    background-color: #111827;
}

/* Gallery Widget Styles */
.vc-gallery-section {
    padding: 1rem 0;
}

.vc-gallery-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.vc-gallery-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.vc-gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.vc-gallery-desc {
    color: #4b5563;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.vc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem !important;
}

@media (min-width: 768px) {
    .vc-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vc-gallery-item {
    cursor: pointer;
    border-radius: 0.5rem !important;
    overflow: hidden;
}

.vc-gallery-img {
    width: 100%;
    height: 10rem !important;
    object-fit: cover;
    border-radius: 0.5rem !important;
    transition: transform 0.2s;
}

/* Lightbox Styles */
.vc-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    transition: opacity 0.3s;
}

.vc-gallery-lightbox.hidden {
    display: none;
}

.vc-lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 64rem;
    max-height: 100%;
    padding: 1rem;
}

.vc-lightbox-image-wrapper {
    position: relative;
    max-width: 64rem;
    max-height: 90vh;
}

.vc-lightbox-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0.5rem !important;
    object-fit: contain;
}

.vc-lightbox-counter {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(31, 41, 55, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 60;
}

.vc-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(31, 41, 55);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.vc-lightbox-nav:hover {
    background-color: rgb(17, 24, 39);
}

.vc-lightbox-nav.prev-btn {
    left: -3rem;
}

.vc-lightbox-nav.next-btn {
    right: -3rem;
}

.vc-lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: rgb(31, 41, 55);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    z-index: 60;
}

.vc-lightbox-close:hover {
    background-color: rgb(17, 24, 39);
}

.vc-lightbox-nav svg,
.vc-lightbox-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Technical Gallery Widget Styles */
.vc-tech-gallery-section {
    padding: 1rem 0;
}

.vc-tech-gallery-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.vc-tech-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .vc-tech-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vc-tech-gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.vc-tech-gallery-img {
    width: 100%;
    height: 10rem !important;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s;
    display: block;
}

.vc-tech-gallery-item:hover .vc-tech-gallery-img {
    transform: scale(1.05);
}

.vc-tech-gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.vc-tech-gallery-item:hover .vc-tech-gallery-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.vc-tech-gallery-view-text {
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 500;
}

.vc-tech-gallery-item:hover .vc-tech-gallery-view-text {
    opacity: 1;
}