﻿body {
}

.Ecommerce-development-section {
    background-image: url('../sysimage/eCommerceDevelopment/EcomBackground.png');
}


.Ecomheadtag {
    color: #EA1D25;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .Ecomheadtag::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 100px;
        left: 120px;
        height: 2px;
        background: linear-gradient(90deg, #EA1D25, #EA1D25);
        transform: translateY(-50%);
    }

/*Custom web offering css start*/
.main-content {
    display: flex;
}

.sidebar {
    width: 480px;
    padding: 30px 20px;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-btn {
    background: none;
    font-weight: 700;
    border: none;
    color: #333;
    padding: 15px 10px;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .service-btn:hover {
        color: #dc3545;
    }

    .service-btn.active {
        color: #dc3545;
        font-weight: 700;
        background: #fff;
        padding-left: 11px;
    }

.content-area {
    position: relative;
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 1;
}


/* Gradient Wave Animation */
.content-area {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%), linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(147, 51, 234, 0.08) 25%, rgba(236, 72, 153, 0.1) 50%, rgba(59, 130, 246, 0.08) 75%, rgba(16, 185, 129, 0.1) 100% );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



@keyframes boxGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), 0 0 50px rgba(147, 51, 234, 0.3);
    }
}

/* Hover Effects */
.content-area:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

    .content-area:hover::before {
        animation-duration: 10s;
    }

/* Content Styling */
.content-area h1, .content-area h2, .content-area h3 {
    position: relative;
    z-index: 10;
    color: #1f2937;
}

.content-area p {
    position: relative;
    z-index: 10;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
}

.content-section {
    display: none;
}

    .content-section.active {
        display: block;
    }

.content-title {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.solutions-title {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.solutions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.solution-text {
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .solutions-list {
        grid-template-columns: 1fr;
    }

    .content-area {
        padding: 20px;
    }
}
/* Title Hover Effects */
.content-title {
    transition: all 0.3s ease;
    position: relative;
}

/* Description Hover */
.content-description {
    transition: all 0.3s ease;
}


/* Solutions Title Hover */
.solutions-title {
    transition: all 0.3s ease;
    cursor: pointer;
}


/* Solution Items Hover Effects */
.solution-item {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    /* Green Check Image Hover */
    .solution-item img {
        transition: all 0.3s ease;
    }


/* Solution Text Hover */
.solution-text {
    transition: all 0.3s ease;
}


/* View More Link Hover */
.view-more {
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: flex;
    padding: 8px 16px;
    border-radius: 5px;
    color: #dc3545;
    font-weight: 600;
    font-size: 14px;
    justify-content:flex-end;
}

    .view-more:hover {
        transform: translateY(-2px);
        text-decoration:none;
    }

    .view-more::after {
        content: ' →';
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .view-more:hover::after {
        opacity: 1;
    }

/* Solutions List Container Hover */
.solutions-list {
    transition: all 0.3s ease;
}



/* Responsive hover effects */
@media (max-width: 768px) {
    .solution-item:hover {
        transform: translateX(5px);
    }

    #eccomerce:hover {
        transform: translateY(-1px);
    }
}
/*Custom web offering css end*/

