﻿/*---------Dotnet Development Design--------*/
.dotnet-hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .dotnet-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        pointer-events: none;
        z-index: 0;
    }
    


.dotnet-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

    .dotnet-service-card:hover {
        transform: translateY(-5px);
    }

.dotnet-tech-stack {
    background: var(--bg-light);
    padding: 60px 0;
}

.dotnet-tech-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .dotnet-tech-item:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.dotnet-process-step {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.dotnet-process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.dotnet-why-choose {
    background: linear-gradient(135deg, var(--bg-light), white);
    padding: 60px 0;
}

.dotnet-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.dotnet-btn-custom {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    cursor: pointer; 
    text-decoration: none;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

    .dotnet-btn-custom:hover {
        background: #e34e1c;
        color: #fff;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

    .dotnet-btn-custom:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }
.dotnet-section-title {
    position: relative;
    margin-bottom: 50px;
}

    .dotnet-section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: var(--accent-color);
    }






/*---------Web Development Design--------*/
.web-hero-banner {
    background: linear-gradient(135deg, var(--accent-color), #d14a1f);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .web-hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="10,10 20,30 0,30" fill="rgba(255,255,255,0.1)"/><polygon points="70,20 85,45 55,45" fill="rgba(255,255,255,0.1)"/><polygon points="30,60 45,85 15,85" fill="rgba(255,255,255,0.1)"/></svg>');
        pointer-events: none;
        z-index: 0;
    }

.web-service-container {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary-color);
}

    .web-service-container:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.web-technology-showcase {
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    padding: 80px 0;
}

.web-tech-badge {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .web-tech-badge:hover {
        transform: scale(1.08);
        border-color: var(--accent-color);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

.web-workflow-stage {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.web-workflow-icon {
    position: absolute;
    top: -20px;
    left: 25px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.web-advantages-area {
    background: linear-gradient(135deg, white, var(--bg-light));
    padding: 35px 0;
}

.web-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: all 0.3s ease;
}

    .web-benefit-icon:hover {
        transform: rotate(10deg) scale(1.1);
    }


.web-custom-btn {
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

    .web-custom-btn:hover {
        background: #0056b3;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    }

.web-section-header {
    position: relative;
    margin-bottom: 60px;
}

    .web-section-header::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }

.web-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}





/*----- SEO & Digital Marketing style------*/
.seo-hero-banner {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .seo-hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/><path d="M60,15 L75,30 L60,45 L45,30 Z" fill="rgba(255,255,255,0.1)"/><rect x="15" y="60" width="20" height="20" rx="3" fill="rgba(255,255,255,0.1)"/></svg>');
        pointer-events: none;
        z-index: 0;
    }

.seo-service-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 5px solid #28a745;
    position: relative;
    overflow: hidden;
}

    .seo-service-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(40,167,69,0.1), transparent);
        transition: all 0.3s ease;
    }

    .seo-service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        border-top-color: var(--accent-color);
    }

        .seo-service-box:hover::before {
            transform: scale(2.5);
        }

.seo-strategy-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 80px 0;
}

.seo-strategy-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

    .seo-strategy-card:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-5px);
    }

.seo-process-timeline {
    background: var(--bg-light);
    padding: 80px 0;
}

.seo-timeline-item {
    background: white;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    border-left: 5px solid #28a745;
}

.seo-timeline-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.seo-benefits-area {
    background: white;
    padding: 80px 0;
}

.seo-benefit-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #28a745, var(--accent-color));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(40,167,69,0.2);
}

    .seo-benefit-icon:hover {
        transform: rotateY(180deg) scale(1.1);
    }

.seo-cta-area {
    background: linear-gradient(135deg, var(--text-dark), #2c3e50);
    color: white;
    padding: 80px 0;
}

.seo-action-button {
    background: #28a745;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(40,167,69,0.3);
}

    .seo-action-button:hover {
        background: #218838;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(40,167,69,0.4);
    }

.seo-section-title {
    position: relative;
    margin-bottom: 60px;
}

    .seo-section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        background: linear-gradient(135deg, #28a745, var(--accent-color));
        border-radius: 2px;
    }

.seo-tools-showcase {
    background: linear-gradient(135deg, var(--bg-light), white);
    padding: 40px 0;
}

.seo-tool-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid #28a745;
}

    .seo-tool-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

.seo-results-section {
    background: linear-gradient(135deg, var(--accent-color), #d14a1f);
    color: white;
    padding: 60px 0;
}

.seo-stat-box {
    text-align: center;
    padding: 20px;
}

.seo-stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}