/* Web Development page specific styles */
.web-dev-hero {
    padding-top: 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.web-dev-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content-left {
    padding-right: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

.feature-item i {
    font-size: 1.5rem;
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.feature-item span {
    color: #a0a0ff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-description {
    color: #a0a0ff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    max-width: 600px;
}

.hero-image-right {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-right::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(0, 240, 255, 0.2) 0%,
        rgba(119, 0, 255, 0.15) 40%,
        transparent 70%
    );
    filter: blur(30px);
    animation: heroGlow 4s ease-in-out infinite;
}

.hero-image-right img {
    position: relative;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatImage 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.quote-btn {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.2);
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 157, 0.3);
}

.website-showcase {
    padding: 6rem 0;
    background: rgba(13, 17, 35, 0.5);
}

.website-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.website-showcase-grid {
    display: grid;
    gap: 4rem;
    padding: 2rem 0;
}

.website-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.website-preview {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-preview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(0, 240, 255, 0.15) 0%,
        rgba(119, 0, 255, 0.1) 50%,
        transparent 70%
    );
    filter: blur(20px);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

.website-preview img {
    position: relative;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.website-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.website-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.website-content p {
    color: #a0a0ff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.website-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.website-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a0a0ff;
    margin-bottom: 0.8rem;
}

.website-features i {
    color: #00f0ff;
}

.live-websites {
    padding: 6rem 0;
    background: rgba(13, 17, 35, 0.5);
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.website-item {
    text-decoration: none;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.website-item .website-preview {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.website-item .website-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.website-preview .website-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(13, 17, 35, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.website-item:hover .website-overlay {
    opacity: 1;
}

.website-item:hover .website-preview img {
    transform: scale(1.05);
}

.website-overlay span {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.website-overlay i {
    color: #00f0ff;
    font-size: 1.5rem;
}

.website-item h3 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.website-type {
    color: #a0a0ff;
    font-size: 0.9rem;
}

.web-services {
    padding: 6rem 0;
    background: rgba(13, 17, 35, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.web-service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.web-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header i {
    font-size: 2rem;
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.service-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.web-service-card p {
    color: #a0a0ff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a0a0ff;
    margin-bottom: 0.8rem;
}

.service-features i {
    color: #00f0ff;
    font-size: 0.8rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-stack span {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
}

/* Recent Projects Section */
.recent-projects {
    padding: 6rem 0;
    background: rgba(13, 17, 35, 0.5);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    background: linear-gradient(to right, #fff, #00f0ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #a0a0ff;
    text-align: center;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.8;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Recent Projects Section - Updated for No Images */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h3 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin: 0;
}

.project-date {
    color: #a0a0ff;
    font-size: 0.9rem;
}

.project-type {
    color: #00f0ff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.project-description {
    color: #a0a0ff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Orbitron', sans-serif;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #00f0ff;
}

.project-link i {
    font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
    .web-dev-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-item {
        justify-content: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1rem;
        margin: 1rem auto;
    }

    .hero-image-right {
        height: 300px;
        order: -1;
    }

    .website-card {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .website-preview {
        height: 300px;
        order: -1;
    }

    .website-content {
        text-align: center;
    }

    .website-features li {
        justify-content: center;
    }

    .tech-stack {
        justify-content: center;
    }

    .websites-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .project-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .website-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .website-preview {
        height: 300px;
    }

    .website-content {
        text-align: center;
    }

    .website-features li {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .website-preview {
        height: 200px;
    }
}

/* Additional styles will be added as we develop the page content */
