/* Web Development Page Specific Styles */

.showcase-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #4ecdc4;
}

.showcase-subtitle {
    color: #b0b0b0;
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

.info-note {
    text-align: center;
    margin-top: 1rem;
}

.info-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-icon {
    font-size: 1rem;
}

.visit-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    color: white;
    text-decoration: none;
}

.iframe-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.website-preview {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 2rem 0;
    display: block;
}

.website-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.preview-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    box-sizing: border-box;
    text-align: center;
}

.preview-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/great-angwa-screenshot.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    z-index: 1;
}

.preview-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.559), rgba(0,0,0,0.8));
    z-index: 2;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.preview-text {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 600px;
    width: 100%;
}

.preview-icon {
    font-size: 4rem !important;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.preview-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.preview-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.preview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    color: white;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.preview-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.preview-button:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Features Grid Styles - Web Development Page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

/* Responsive Design for Web Development */
@media (max-width: 768px) {
    .showcase-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .showcase-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
    
    .showcase-subtitle {
        font-size: 0.9rem;
    }
    
    .visit-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .info-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
    .preview-content {
        padding: 2.5rem 1.5rem;
    }
    
    .preview-title {
        font-size: 2.2rem;
    }
    
    .preview-description {
        font-size: 1.1rem;
    }
    
    .preview-icon {
        font-size: 3.5rem !important;
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .iframe-container {
        margin: 1rem 0 !important;
        padding: 0 0.5rem !important;
    }
    
    .website-preview {
        min-height: 450px !important;
        border-radius: 15px;
        margin: 1rem 0 !important;
        display: block !important;
    }
    
    .preview-content {
        padding: 2rem 1rem !important;
        min-height: 450px !important;
        display: flex !important;
    }
    
    .preview-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem;
    }
    
    .preview-title {
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .preview-description {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .preview-features {
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        width: 90% !important;
        max-width: 220px !important;
        text-align: center;
    }
    
    .preview-button {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
        gap: 0.5rem;
        width: 90% !important;
        max-width: 250px !important;
        justify-content: center;
    }
}

/* Small Mobile Responsive Styles */
@media (max-width: 480px) {
    .iframe-container {
        padding: 0 !important;
        margin: 0.5rem 0 !important;
    }
    
    .website-preview {
        min-height: 380px !important;
        border-radius: 12px;
        margin: 0.5rem 0 !important;
    }
    
    .preview-content {
        padding: 1.5rem 0.8rem !important;
        min-height: 380px !important;
    }
    
    .preview-icon {
        font-size: 2rem !important;
        margin-bottom: 0.8rem;
    }
    
    .preview-title {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .preview-description {
        font-size: 0.85rem !important;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .preview-features {
        flex-direction: column !important;
        align-items: center;
        gap: 0.4rem !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-tag {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
        width: 95% !important;
        max-width: 180px !important;
        text-align: center;
    }
    
    .preview-button {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
        width: 95% !important;
        max-width: 200px !important;
        gap: 0.4rem;
    }
    
    .preview-button i {
        font-size: 1rem !important;
    }
}

/* Extra Small Mobile Responsive Styles */
@media (max-width: 360px) {
    .preview-content {
        padding: 1.2rem 0.8rem;
    }
    
    .preview-title {
        font-size: 1.3rem;
    }
    
    .preview-description {
        font-size: 0.85rem;
    }
    
    .preview-icon {
        font-size: 2.2rem !important;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .preview-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .website-preview {
        min-height: 280px;
    }
    
    .preview-content {
        padding: 1.5rem;
    }
    
    .preview-icon {
        font-size: 2rem !important;
        margin-bottom: 0.8rem;
    }
    
    .preview-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .preview-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .preview-features {
        margin-bottom: 1.2rem;
    }
}

/* Animation keyframes */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add smooth animations */
.preview-text * {
    animation: slideUp 0.6s ease-out;
}

.preview-title {
    animation-delay: 0.1s;
}

.preview-description {
    animation-delay: 0.2s;
}

.preview-features {
    animation-delay: 0.3s;
}

.preview-button {
    animation-delay: 0.4s;
}

/* CTA Section Styles */
.cta-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

/* Mobile CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 2rem 1.5rem;
        margin: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}