﻿.Heading-25px {
    font-size: 25px;
    font-weight: 700;
    color: #002240 !important;
}

.transformation-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 380px;
    z-index: 1;
    background: #fff;
}

    /* Background animation layers */
    .transformation-card::before,
    .transformation-card::after {
        content: "";
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
        background: #04273D;
        background-size: cover;
        z-index: -1;
        transform: scaleX(0);
        transition: transform 0.5s ease-in-out;
    }

    .transformation-card::before {
        left: 1px;
        transform-origin: right; /* key fix */
    }

    .transformation-card::after {
        right: 0;
        transform-origin: left; /* key fix */
    }

    .transformation-card:hover::before,
    .transformation-card:hover::after {
        transform: scaleX(1);
    }

    /* Hover effects */
    .transformation-card:hover {
        background-size: cover;
    }

        .transformation-card:hover .Transformation-number {
            background: #6C8798;
        }

        .transformation-card:hover .floating-element {
            opacity: 0.6;
        }

        .transformation-card:hover .read-more-btn {
            display: block !important;
        }

        .transformation-card:hover .defult-img {
            display: none;
        }

        .transformation-card:hover .hover-img {
            display: block;
        }

        .transformation-card:hover .web-title,
        .transformation-card:hover .service-description {
            color: white;
        }


    /* Featured styles */
    .transformation-card.featured .service-title {
        color: white;
    }

    .transformation-card.featured .service-description {
        color: rgba(255, 255, 255, 0.8);
    }

    .transformation-card.featured .read-more {
        color: #ff6b6b;
    }

.solution-item:hover {
    transform: translateX(5px);
}

.Transformation-number {
    position: absolute;
    top: 20px;
    right: -2px;
    background: rgba(52, 73, 94, 0.1);
    color: #34495e;
    width: 82px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 23px;
    transition: all 0.3s ease;
    border-radius: 50px 0px 0px 52px;
}

.opacitycolor {
    background: #F2F4F5;
}

.portfolio-container {
    /*background: url('/Content/sysimage/portfolioback.png');*/
    background-image: url('../Content/sysimage/portfolioback.png');
    position: relative;
    background-size: cover;
}

.read-more-btn {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    margin-top: 15px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: none;
    position: relative;
}
.custom-close {
    font-size: 11px !important;
    padding: 23px 12px !important;
}

    .read-more-btn:hover {
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover .arrow {
    transform: translateX(6px);
}

.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px !important;
    max-width: 1200px;
    margin: auto;
    margin-top: 70px !important;
}

.stat-box {
    flex: 1 1 25%;
    text-align: center;
    /*padding: 20px 10px;*/
    border-right: 2px solid #e02828;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

    .stat-box:last-child {
        border-right: none;
    }

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #e02828;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.4s;
}


.product-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
    max-width: 1400px;
    margin: auto;
}

.product-image {
    flex: 1 1 40%;
}

    .product-image img {
        max-width: 90%;
        height: auto;
    }

.product-content {
    flex: 1 1 60%;
    padding: 20px 40px;
}

    .product-content h4 {
        color: #e02828;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .product-content h2 {
        color: #002240;
        margin: 0;
        font-size: 28px;
    }

    .product-content p {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
        margin: 20px 0;
    }

    .product-content .btn-learn {
        background-color: #e02828;
        color: #fff;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.3s ease;
        display: inline-block;
    }

        .product-content .btn-learn:hover {
            background-color: #c81f1f;
        }

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.section-tag {
    color: #EA1D25;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-tag::before,
    .section-tag::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 105px;
        height: 2px;
        background: linear-gradient(90deg, #ff6b6b, #ee5a24);
        transform: translateY(-50%);
    }

    .section-tag::before {
        left: -125px;
    }

    .section-tag::after {
        right: -125px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.web-title {
    font-size: 21px;
    font-weight: 700;
    margin: 15px 0px;
}

.service-card {
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-image: url(../Content/sysimage/UIUXWebDesign/Services_backgroung_hover.png);
        background-size: cover;
        background-position: center;
        transition: left 0.5s ease-in-out;
        z-index: -1;
    }

    .service-card:hover::before {
        left: 0;
    }

/*.service-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }*/




.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(52, 73, 94, 0.1);
    color: #34495e;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-card:hover .card-number {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

.service-card:hover .service-icon::before {
    animation: shimmer 0.6s ease-in-out;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card.featured .service-title {
    color: white;
}

.service-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-card.featured .service-description {
    color: rgba(255, 255, 255, 0.8);
}

/*.read-more {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured .read-more {
    color: #ff6b6b;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}*/

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    opacity: 0;
    animation: float 4s infinite ease-in-out;
}

.service-card:hover .floating-element {
    opacity: 0.6;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(90deg);
    }

    50% {
        transform: translateY(-5px) rotate(180deg);
    }

    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .section-tag::before,
    .section-tag::after {
        display: none;
    }

    .parts-product-tag::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 15px;
    }

    .service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .stat-box {
        flex: 1 1 100%;
        border-right: none;
    }

        .stat-box:last-child {
            border-bottom: none;
        }

    .product-section {
        flex-direction: column;
        text-align: center;
    }

    .product-content {
        padding: 20px;
    }
}

/*.retailers-section{
    margin: 6rem 0 6rem;
    text-align: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}*/

.retailers-heading {
    font-weight: 600;
    font-size: 1.55rem;
    margin-bottom: 1.5rem;
}

.retailers-logos {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10.1rem;
    margin: 24px 0px;
}

    .retailers-logos img {
        height: 85px;
        max-width: 180px;
        object-fit: contain;
        transition: filter 0.3s ease;
    }

.affiliation-tag {
    color: #EA1D25;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    /*display: inline-block;*/
}

    .affiliation-tag::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #ff6b6b, #ee5a24);
        transform: translateY(-50%);
    }

.parts-product-tag {
    color: #EA1D25;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block !important;
}

    .parts-product-tag::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 109px;
        height: 2px;
        background: linear-gradient(90deg, #ff6b6b, #ee5a24);
        transform: translateY(-50%);
    }

    .parts-product-tag::after {
        right: -117px;
    }

/* ECCOMERCE YYM SOLUCTION CSS START*/

.solutions-section {
    background: url('../Content/sysimage/YYM_back_banner.png');
    background-size: cover;
    padding: 80px 0;
    overflow: hidden;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(10px, 10px);
    }
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}


.container {
    position: relative;
    z-index: 2;
}

.yym-section-header {
    margin-bottom: 60px;
    text-align: left;
}
/*.H2_FontSize{
    color:white !important;
}*/
.section-label {
    color: #EA1D25;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

    .section-label::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 89px;
        height: 2px;
        left: 126px;
        background: linear-gradient(90deg, #EA1D25, #EA1D25);
        transform: translateY(-50%);
    }

.section-label_1 {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

    .section-label_1::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 70px;
        height: 2px;
        left: 128px;
        background: linear-gradient(90deg, #ff6b6b, #ee5a24);
        transform: translateY(-50%);
    }

@keyframes labelGlow {
    from {
        box-shadow: 0 0 5px var(--primary-color);
    }

    to {
        box-shadow: 0 0 20px var(--primary-color);
    }
}

.eccomerce-title {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    color:#fff !important;
    background-clip: text;
    font-size:54px !important;
}

.section-description {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

.cta-button {
    background: #ff4757 !important;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(220, 53, 69, 0.4);
    }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Advanced Service Card Animations */
:root {
    --shopify-green: #95C623;
    --bigcommerce-blue: #003d82;
    --woo-purple: #7854f7;
    --magento-orange: #ee672f;
}

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 13px 17px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

    /* Animated gradient border */
    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--shopify-green), var(--bigcommerce-blue), var(--woo-purple), var(--magento-orange));
        transform: scaleX(0);
        transition: transform 0.6s ease;
        transform-origin: left;
    }

    /* Floating particles effect */
    /*.solution-card::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0;
        animation: float 20s linear infinite;
        pointer-events: none;
    }*/

    /* Hover effects */
    .solution-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        /*background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);*/
    }

.whyhire-rows {
    /* smooth transition for the glow */
    transition: box-shadow .22s ease;
}

    .whyhire-rows:hover {
        /* even 4-side red glow using spreading shadows */
        box-shadow: 0 0 10px -10px rgba(232,29,37,0.95), /* tight inner glow */
        0 0 24px 6px rgba(232,29,37,0.45); /* wider soft halo */
    }

/* Card icon animations */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

    .card-icon img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        z-index: 2;
        filter: brightness(1) saturate(1);
    }

/* Icon background with pulse effect */
/*.card-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--shopify-green), var(--bigcommerce-blue));
        transform: translate(-50%, -50%);
        transition: all 0.5s ease;
        z-index: 1;
    }*/

.solution-card:hover .card-icon::before {
    width: 100%;
    height: 100%;
    animation: pulse 2s ease infinite;
}

.solution-card:hover .card-icon img {
    filter: brightness(1.2) saturate(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.5));
    transform: scale(1.2) rotate(360deg);
}

/* Title animations */
.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .card-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--shopify-green), var(--bigcommerce-blue));
        transition: width 0.5s ease;
    }

.solution-card:hover .card-title::after {
    width: 100%;
}

/* Description animations */
.card-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.solution-card:hover .card-description {
    color: #2c3e50 !important;
}

/* Read more button with advanced effects */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: 50px;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .read-more:hover {
        color: #e81d25;
        text-decoration: none;
    }

        .read-more:hover::before {
            left: 0;
        }

        .read-more:hover i {
            transform: translateX(5px);
            animation: arrowBounce 1s ease infinite;
        }

/* Specific card color schemes */
.solution-card.shopify:hover .card-icon::before {
    background: linear-gradient(45deg, var(--shopify-green), #7ba428);
}

.solution-card.bigcommerce:hover .card-icon::before {
    background: linear-gradient(45deg, var(--bigcommerce-blue), #0052a3);
}

.solution-card.woocommerce:hover .card-icon::before {
    background: linear-gradient(45deg, var(--woo-purple), #9b6bfb);
}

.solution-card.magento:hover .card-icon::before {
    background: linear-gradient(45deg, var(--magento-orange), #ff7f47);
}

/* Keyframe animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        transform: scaleX(1) translateX(0);
    }

    50% {
        transform: scaleX(1) translateX(10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(10px);
    }
}



@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .solution-card {
        padding: 30px 20px;
    }

        .solution-card:hover {
            transform: translateY(-10px) scale(1.01);
        }

    .card-icon {
        width: auto;
        height: 100%;
    }

        .card-icon img {
            width: auto;
            height: auto;
        }
}

.shopify-bg {
    background: #F2FFEA !important;
}

.bigcommerce-bg {
    background: #EBEBEB !important;
}

.woocommerce-bg {
    background: #f7f0ff !important;
}

.magento-bg {
    background: #fff1e7 !important;
}

/*.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

    .card-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: inherit;
        z-index: -1;
        transform: scale(0);
        transition: transform 0.4s ease;
    }*/


.shopify .card-icon {
    background: rgba(150, 191, 71, 0.1);
    color: var(--shopify-green);
}

.bigcommerce .card-icon {
    background: rgba(44, 90, 160, 0.1);
    color: var(--bigcommerce-blue);
}

.woocommerce .card-icon {
    background: rgba(150, 88, 138, 0.1);
    color: var(--woo-purple);
}

.magento .card-icon {
    background: rgba(242, 99, 34, 0.1);
    color: var(--magento-orange);
}

.card-icon i {
    font-size: 35px;
    transition: all 0.4s ease;
}


/*.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}*/

.card-description {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}
/* Pulse animation for cards */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.service-btn.active {
    border-bottom: 3px solid #dc3545;
}
/* Responsive Design */
@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .solution-card {
        padding: 30px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .solution-card {
        padding: 25px;
    }

    .card-icon {
        width: auto;
        height: auto;
    }

        .card-icon i {
            font-size: 30px;
        }
}


/*TESTIMONIAL SECTION CSS START*/
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.content-left {
    flex: 1;
    max-width: 500px;
}

.section-title {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top:0px;
}

.section-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #2d3748;
    font-weight: 500;
}

.feature-check {
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-check::before {
        content: '✓';
        color: white;
        font-size: 11px;
        font-weight: bold;
    }

.cta-button {
    background: #dc3545;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .cta-button:hover {
        background: #c82333;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    }

.content-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.devices-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
}

.device {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.6s ease;
}

.laptop {
    width: 280px;
    height: 180px;
    top: 0;
    right: 0;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
}

.tablet {
    width: 200px;
    height: 280px;
    bottom: 20px;
    left: 0;
    transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
}

.phone {
    width: 120px;
    height: 200px;
    bottom: 0;
    right: 60px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.laptop .device-screen {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 280 180"><rect fill="%23333" width="280" height="25"/><rect fill="%23fff" y="25" width="280" height="155"/><rect fill="%23ffd700" x="20" y="45" width="240" height="30" rx="4"/><rect fill="%23e9ecef" x="20" y="85" width="110" height="70" rx="4"/><rect fill="%23e9ecef" x="150" y="85" width="110" height="70" rx="4"/></svg>') no-repeat center/cover;
}

.tablet .device-screen {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 280"><rect fill="%23fff" width="200" height="40"/><rect fill="%23f8f9fa" y="40" width="200" height="240"/><rect fill="%23007bff" x="15" y="10" width="80" height="20" rx="10"/><rect fill="%236c757d" x="105" y="10" width="50" height="20" rx="10"/><rect fill="%23ffc107" x="15" y="60" width="170" height="30" rx="6"/><rect fill="%23e9ecef" x="15" y="110" width="170" height="50" rx="6"/><rect fill="%23e9ecef" x="15" y="180" width="170" height="80" rx="6"/></svg>') no-repeat center/cover;
}

.phone .device-screen {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 200"><rect fill="%23000" width="120" height="20"/><rect fill="%23fff" y="20" width="120" height="160"/><rect fill="%23000" y="180" width="120" height="20"/><rect fill="%23007bff" x="10" y="35" width="100" height="25" rx="12"/><rect fill="%23ffc107" x="10" y="70" width="100" height="20" rx="4"/><rect fill="%23e9ecef" x="10" y="100" width="100" height="30" rx="4"/><rect fill="%23e9ecef" x="10" y="140" width="100" height="30" rx="4"/></svg>') no-repeat center/cover;
}

.navigation-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .navigation-arrows:hover {
        background: white;
        color: #333;
        transform: translateY(-50%) scale(1.1);
    }

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Hover Effects */
.device:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-container {
        padding: 40px;
    }

    .content-wrapper {
        gap: 40px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .devices-showcase {
        max-width: 400px;
        height: 320px;
    }

    .laptop {
        width: 250px;
        height: 160px;
    }

    .tablet {
        width: 180px;
        height: 250px;
    }

    .phone {
        width: 110px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        padding: 30px 20px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .devices-showcase {
        max-width: 300px;
        height: 250px;
    }

    .laptop {
        width: 200px;
        height: 130px;
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }

    .tablet {
        width: 140px;
        height: 200px;
        transform: perspective(1000px) rotateY(5deg) rotateX(-3deg);
    }

    .phone {
        width: 90px;
        height: 150px;
        transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    }

    .navigation-arrows {
        display: none;
    }
}
.lets-text {
    color: #002240 !important;
    font-weight:800;
    font-size:45px;
}
@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .devices-showcase {
        max-width: 250px;
        height: 200px;
    }
}

.default-img {
    display: block;
}

.hover-img {
    display: none;
}

.service-card:hover .defult-img {
    display: none;
}

.service-card:hover .hover-img {
    display: block;
}

.service-card:hover .web-title,
.service-card:hover .service-description {
    color: white;
}

/*.border-top-gray h1 {
    animation: slideInLeft 0.8s ease-out;
}

    .border-top-gray h1:hover {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }*/
/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 13px;
}

.faq-question {
    background: #fff;
    padding: 15px 50px 15px 20px; /* right padding vadhaavi ke icon ne space male */
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    box-sizing: border-box; /* responsive padding handling */
}

faq-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

faq-question::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%) scale(1) rotate(0deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: brightness(1) saturate(1);
    opacity: 1;
    pointer-events: none;
}

.faq-question::after {
    content: '';
    background-image: url('../Content/webdevelopmentimg/black_plus.png'); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '';
    background-image: url('../Content/webdevelopmentimg/red-minus.png'); /* Replace with your image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) scale(1) rotate(180deg);
    animation: iconPulse 2s infinite ease-in-out;
    filter: brightness(1.5) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}
/*.faq-question.active + .faq-answer {
    max-height: 1000px;
}*/
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
    background-color: #fff;
}

    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }

.active {
    color: #EA1D25;
    font-weight: bolder;
    /*border-bottom:1px solid #f2f2f2;*/
}
/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .faq-question {
        font-size: 16px;
        font-size: 16px; /* text size thodu ochu */
        padding: 12px 45px 12px 15px; /* mobile ma right padding thodi adjust */
    }

    .faq-answer p {
        font-size: 14px;
    }
}
