/* webdevelopment hero section  */

.dw-hero-section {
    background: var(--theme-gradient-color);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.dw-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(86, 151, 90, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 106, 191, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dw-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(86, 151, 90, 0.5), transparent);
}

.dw-hero-content {
    position: relative;
    z-index: 1;
}

.dw-hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(86, 151, 90, 0.4);
    animation: dwFadeInDown 0.8s ease-out;
}

.dw-hero-title {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: dwFadeInUp 0.8s ease-out 0.2s both;
}

.dw-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    animation: dwFadeInUp 0.8s ease-out 0.4s both;
}

.dw-hero-highlight {
    font-weight: 600;
    color: var(--secondary-light-color);
    position: relative;
    /* display: inline-block; */
}

.dw-hero-cta {
    animation: dwFadeInUp 0.8s ease-out 0.6s both;
}

@keyframes dwFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dwFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dw-hero-section {
        padding: 60px 0;
        min-height: 350px;
    }

    .dw-hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
        margin-bottom: 20px;
    }

    .dw-hero-title {
        margin-bottom: 20px;
    }

    .dw-hero-subtitle {
        margin-bottom: 28px;
    }

    .dw-btn-hero {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 12px;
    }

    .dw-btn-spacing {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .dw-hero-section {
        padding: 50px 0;
    }
}


/* swiper  slider  */

/* Swiper Container */
.sl3d-swiper {
    width: 100%;
    padding: 50px 0 80px;
}

/* Slide Cards */
.sl3d-slide {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    height: 650px;
    display: flex;
    flex-direction: column;
}

/* Card Image */
.sl3d-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    aspect-ratio: 1/1.5;
    object-position: top;
    object-fit: cover;
}

/* Swiper Navigation */
.sl3d-swiper .swiper-button-next,
.sl3d-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.sl3d-swiper .swiper-button-next::after,
.sl3d-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.sl3d-swiper .swiper-button-next:hover,
.sl3d-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}



/* Swiper Pagination */
.sl3d-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.sl3d-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sl3d-wrapper {
        padding: 60px 0;
    }

    .sl3d-slide {
        height: 400px;
    }

    .sl3d-swiper .swiper-button-next,
    .sl3d-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .sl3d-swiper .swiper-button-next::after,
    .sl3d-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}


/* web portfolio scroll  */

.gp-portfolio-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
}

.pf-img {
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    /* border-radius: 12px; */
    transition: ease-in-out 3s !important;
}

.pf-img.dranuja {
    background-image: url('../img/cards/dranujaporwal.com_.png');
}

.pf-img.bharatpharmacy {
    background-image: url('../img/cards/bharatpharmacyindia.com_.png');
}

.pf-img.drrajatbajaja {
    background-image: url('../img/cards/drrajatbajajoncocare.com_.png');
}

.pf-img:hover {
    background-position: center bottom !important;
}

.gp-portfolio-title {
    padding: 20px 15px;
    font-size: 19px;
    text-align: center;
    color: var(--white);
    background: var(--secondary-color);
    margin: 0;
}


/* contact form */


.cf-contact-section {
    position: relative;
    padding: 40px 0;
    background: var(--dark-bg-color);
    overflow: hidden;
}

.cf-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cf-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.5;
}

.cf-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 51, 95, 0.8) 0%, rgba(14, 106, 191, 0.75) 100%);
    z-index: 2;
}

.cf-content-wrapper {
    position: relative;
    z-index: 3;
}

.cf-text-content {
    color: var(--white);

}

.cf-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--white);
}

.cf-title-highlight {
    color: var(--secondary-color);
}

.cf-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cf-form-wrapper {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cf-form-group {
    margin-bottom: 10px;
}

.cf-form-control {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-text-color);
}

.cf-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 106, 191, 0.25);
}

.cf-form-control::placeholder {
    color: var(--gray-600);
}

.cf-form-control.cf-textarea {
    min-height: 100px;
    resize: vertical;
}

.cf-submit-btn {
    width: 100%;
    padding: 10px 16px;
    background: var(--secondary-gradient-color);
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(86, 151, 90, 0.4);
}

@media (max-width: 991px) {

    .cf-text-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .cf-main-title {
        font-size: 2.5rem;
    }

    .cf-form-wrapper {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {

    .cf-main-title {
        font-size: 2rem;
    }

    .cf-description {
        font-size: 1.05rem;
    }

    .cf-form-wrapper {
        padding: 25px 20px;
    }
}



/* seo card  */

.seo-hcard {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
}

.seo-hcard-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.seo-hcard-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}

.seo-hcard-img img {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 2/1.2;
    object-fit: cover;
}

.seo-hcard-text {
    padding: 10px 12px;
    border-radius: 15px;
    background: var(--primary-gradient-color);
    position: relative;
    z-index: 1;
    margin-top: -20px;
    color: var(--white);
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.seo-hcard-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.seo-hcard-text p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.5;
    margin: 0;
}



.hsi-content-wrapper {
    padding: 40px 30px;
    background: var(--gray-200);
    border-radius: 15px;
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1), inset 5px 5px 10px rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.hsi-main-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-text-color);
    font-weight: 400;
    margin-bottom: 0;
}

.hsi-highlight {
    font-weight: 600;
    color: var(--primary-color);
}


/* social-media-management-clinic */

.hcsm-services-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.hcsm-section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.3;
}

.hcsm-service-card-wrapper {
    height: 100%;
}

.hcsm-service-card {
    background: linear-gradient(135deg, var(--primary-light-color) 0%, #d6ebff 100%);
    border-radius: 16px;
    padding: 25px 12px 60px;
    overflow: hidden;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hcsm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 106, 191, 0.15);
}

.hcsm-card-border-accent {
    position: absolute;
    left: 15px;
    top: 25px;
    width: 3px;
    height: 45px;
    background: var(--secondary-gradient-color);
    border-radius: 2px;
}

.hcsm-service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text-color);
    margin-bottom: 15px;
    padding-left: 15px;
    line-height: 1.2;
    height: 47px;
}

.hcsm-service-description {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 15px;
    flex-grow: 1;
}

.hcsm-icon-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;

}

.hcsm-dashed-line {
    position: absolute;
    bottom: 80px;
    left: 8%;
    width: 30%;
    height: 2px;
    background-image: repeating-linear-gradient(to right,
            var(--secondary-color) 0,
            var(--secondary-color) 8px,
            transparent 8px,
            transparent 16px);
}

.hcsm-icon-blob {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -40px;
    right: -40px;
    box-shadow: 0 4px 15px rgba(86, 151, 90, 0.3);

}

.hcsm-icon-blob svg {
    width: 100px;
    height: 100px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

.hcsm-icon-blob svg.hcsm-fill-icon {
    fill: var(--dark-text-color);
    stroke: none;
}

.hcsm-icon-blob svg.hcsm-mixed-icon {
    fill: var(--dark-text-color);
}

.hcsm-icon-blob svg text {
    fill: var(--dark-text-color);
}

.hcsm-service-card-wrapper:nth-child(2) .hcsm-service-card {
    background: linear-gradient(135deg, var(--secondary-light-color) 0%, #daf7dd 100%);
}

.hcsm-service-card-wrapper:nth-child(2) .hcsm-service-card:hover {
    box-shadow: 0 10px 30px rgba(86, 151, 90, 0.15);
}

.hcsm-service-card-wrapper:nth-child(4) .hcsm-service-card {
    background: linear-gradient(135deg, var(--secondary-light-color) 0%, #daf7dd 100%);
}

.hcsm-service-card-wrapper:nth-child(4) .hcsm-service-card:hover {
    box-shadow: 0 10px 30px rgba(86, 151, 90, 0.15);
}

.social-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;

}

@media (max-width: 1199px) {
    .hcsm-section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991px) {


    .hcsm-service-card {
        margin-bottom: 25px;
        padding: 20px 20px 50px;
    }
}

@media (max-width: 767px) {
    .hcsm-section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .hcsm-card-border-accent {
        top: 20px;
        height: 25px;
        left: 20px;
    }

    .hcsm-service-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding-left: 10px;
    }


    .hcsm-service-description {
        font-size: 1rem;
    }

    .hcsm-icon-blob {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -20px;

    }

    .hcsm-icon-blob svg {
        width: 80px;
        height: 80px;
    }
}


/* who we serve  */

.hc-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.hc-card-image {
    max-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Bottom label bar */
.hc-card-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    background: #002f5e;
    /* dark blue */
    color: #ffffff;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.servi-section .owl-nav .owl-prev,
.servi-section .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
    color: #234663 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.servi-section .owl-nav .owl-prev {
    left: 0px;
}

.servi-section .owl-nav .owl-next {
    right: 0px;
}

@media (max-width: 480px) {


    .hc-card-label {
        bottom: 10px;
    }

    .hc-card-arrow {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
}


/* contact btn section  */

.hc-cta-simple-container {
    background: var(--gray-200);
    border-radius: 18px;
    padding: 36px 32px 30px;
    border: 1px solid var(--gray-500);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.hc-cta-simple-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin: 0 0 14px;
    letter-spacing: 0.1px;
}

.hc-cta-simple-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--dark-text-color);
}

.hc-cta-simple-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {

    .hc-cta-simple-container {
        padding: 20px 12px 20px;
    }

    .hc-cta-simple-title {
        font-size: 1.3rem;
    }

    .hc-cta-simple-text {
        font-size: 0.94rem;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .hc-cta-simple-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}


/* key beneffit section  */

.vm-benefits-section {
    padding: 3.5rem 0;
    background-color: #e8e8e8;
}

.vm-section-header {
    margin-bottom: 2rem;
    max-width: 800px;
}

.vm-section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    line-height: 1.2;
}

.vm-section-description {
    font-size: 1.125rem;
    color: var(--dark-text-color);
    line-height: 1.6;
}

.vm-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    height: 100%;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.vm-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
    background: var(--secondary-light-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vm-benefit-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.vm-benefit-card:hover .vm-benefit-icon {
    background: var(--secondary-color);
}

.vm-card-seq .col-lg-3:nth-child(2n) .vm-benefit-card,
.vm-card-seq .col-lg-4:nth-child(2n) .vm-benefit-card {
    border-color: var(--secondary-color);

    .vm-benefit-icon {
        background: var(--secondary-color);
    }
}



.vm-card-seq .col-lg-4:nth-child(2n) .vm-benefit-card:hover,
.vm-card-seq .col-lg-3:nth-child(2n) .vm-benefit-card:hover {
    border-color: var(--primary-color);

    background: var(--primary-light-color);

    .vm-benefit-icon {
        background: var(--primary-color);
    }
}

.vm-benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.vm-benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.vm-benefit-description {
    font-size: 1rem;
    color: var(--dark-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .vm-section-title {
        font-size: 1.5rem;
    }

    .vm-benefits-section {
        padding: 2.5rem 0;
    }

    .vm-benefit-card {
        padding: 20px 12px;
    }
}

/* Using your exact theme variables */

.pm-benefits-theme {
    background: var(--primary-gradient-color);
    padding: 50px 0;
    color: var(--dark-text-color);
}

.pm-benefits-theme-title {
    font-size: 2.3rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 0 26px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pm-benefits-theme-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gray-500);
    border-radius: 20px;
    overflow: hidden;
    padding: 32px 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.pm-benefits-theme-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
}

.pm-benefits-theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--primary-gradient-color);
}

.pm-benefits-theme-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.pm-benefits-theme-list li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-gradient-color);
    box-shadow: 0 0 0 2px rgba(0, 84, 162, 0.4);
}

@media (max-width: 768px) {
    .pm-benefits-theme {
        padding: 40px 0;
    }

    .pm-benefits-theme-title {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }

    .pm-benefits-theme-card {
        padding: 20px 12px;
    }

    .pm-benefits-theme-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pm-benefits-theme-list {
        font-size: 0.95rem;
    }
}



/* FAQ Section */
.pro-faq-section {
    background: var(--gray-100);
    padding: 60px;
}

.pro-faq-accordion {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.pro-faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.pro-faq-item:last-child {
    border-bottom: none;
}

.pro-faq-question {
    position: relative;
    padding: 20px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text-color);
    background: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.pro-faq-question.active {
    background: var(--primary-gradient-color);
    color: var(--white);
}

.pro-faq-question i {
    transition: transform 0.7s ease;
    font-size: 1.2rem;
}

.pro-faq-question.active i {
    transform: rotate(360deg);
    color: var(--white) !important;
}

.pro-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gray-100);
}

.pro-faq-answer-inner {
    padding: 20px 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .pro-faq-section {
        padding: 60px 16px;
    }

    .pro-faq-title {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }

    .pro-faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .pro-faq-answer-inner {
        padding: 0 24px 20px;
        font-size: 0.95rem;
    }
}




/*swiper slider*/



.ps-showcase-section {
            padding: 60px 0 30px;
            background: var(--white);
        }

        .ps-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .ps-section-subtitle {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .ps-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-text-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .ps-section-description {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .ps-showcase-card {
            height: 100%;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ps-showcase-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 40px rgba(14, 106, 191, 0.1);
        }

        .ps-preview-wrapper {
            position: relative;
            overflow: hidden;
            background: var(--gray-100);
            /* aspect-ratio: 16 / 7.5; */
        }

        .ps-preview-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .ps-showcase-card:hover .ps-preview-image {
            transform: scale(1.08);
        }

        .ps-info-section {
            padding: 20px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--white);
        }

        .ps-project-info {
            flex: 1;
        }

        .ps-project-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-text-color);
            margin-bottom: 8px;
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .ps-showcase-card:hover .ps-project-title {
            color: var(--primary-color);
        }

        .ps-project-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .ps-meta-item {
            font-size: 0.875rem;
            color: var(--gray-600);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ps-meta-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .ps-view-btn-wrapper {
            display: flex;
            align-items: center;
        }


        .ps-category-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 7px 12px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            z-index: 2;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .ps-showcase-card:hover .ps-category-badge {
            opacity: 1;
            transform: translateY(0);
        }


        @media (max-width: 991px) {
            .ps-showcase-section {
                padding: 80px 0;
            }

            .ps-section-title {
                font-size: 2rem;
            }

            .ps-section-header {
                margin-bottom: 50px;
            }

            .ps-project-title {
                font-size: 1.35rem;
            }

            .ps-info-section {
                padding: 30px 25px;
            }
        }

        @media (max-width: 767px) {
            .ps-showcase-section {
                padding: 60px 0;
            }

            .ps-showcase-item {
                margin-bottom: 35px;
            }

            .ps-section-title {
                font-size: 1.5rem;
            }

            .ps-project-title {
                font-size: 1.1rem;
            }

            .ps-info-section {
                padding: 20px 12px;
            }

        }