:root {
    --primary-color: #6c63ff;
    --primary-light: #8b85ff;
    --primary-dark: #564fd1;
    --secondary-color: #00bfa6;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    background-color: #fefefe;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-web {
    background: var(--gradient-dark);
    padding: 10rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-web:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.1;
    }
}

.web-feature-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    background-color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.web-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.web-tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.tech-stack-badge {
    display: inline-block;
    background-color: white;
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-stack-badge:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.web-process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.web-process-step:before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: var(--light-gray);
}

.web-process-step:last-child:before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.web-showcase-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.web-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.web-showcase-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.web-benefits-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.web-benefits-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bg-web-light {
    background-color: #f8f9fa;
}