/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4ff;
    color: #1a1a2e;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.15;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating particles */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* 3D Shapes Animation */
.shape-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* 3D Triangle - PROPER PYRAMID WITH MEETING APEX */

.triangle-container {
    position: absolute;
    top: 19%;
    right: 8%;
    width: 200px;
    height: 200px;
    perspective: 800px;
    perspective-origin: 50% -100%;
    animation: floatShape 8s ease-in-out infinite;
}

.triangle {
    transform-style: preserve-3d;
    position: relative;
    animation: rotateTriangle 15s infinite linear;
}

@keyframes rotateTriangle {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Triangle faces */
.triangle-face {
    position: absolute;
    width: 0;
    height: 0;
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
    border-bottom: 160px solid rgba(255, 254, 254, 0.5);
}

.triangle-face:nth-child(1) {
    border-bottom: 160px solid rgba(102, 126, 234, 0.6);
    transform: rotateX(30deg) translateZ(46px);
}

.triangle-face:nth-child(2) {
    border-bottom: 160px solid rgba(118, 75, 162, 0.6);
    transform: rotateY(90deg) rotateX(-30deg) translateZ(-46px);
}

.triangle-face:nth-child(3) {
    border-bottom: 160px solid rgba(240, 147, 251, 0.6);
    transform: rotateY(-90deg) rotateX(-30deg) translateZ(-46px);
}

.triangle-face:nth-child(4) {
    border-bottom: 160px solid rgba(102, 126, 234, 0.7);
    transform: rotateX(-30deg) translateZ(-46px);
}
/* 3D Cube */
.cube-container {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 120px;
    height: 120px;
    perspective: 1000px;
    animation: floatShape 6s ease-in-out infinite;
    animation-delay: 1s;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

@keyframes rotateCube {
    from { transform: rotateX(0) rotateY(0); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    backdrop-filter: blur(5px);
}

.cube-face:nth-child(1) { 
    transform: rotateY(0deg) translateZ(60px); 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3)); 
}
.cube-face:nth-child(2) { 
    transform: rotateY(90deg) translateZ(60px); 
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.3), rgba(102, 126, 234, 0.3)); 
}
.cube-face:nth-child(3) { 
    transform: rotateY(180deg) translateZ(60px); 
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(118, 75, 162, 0.3)); 
}
.cube-face:nth-child(4) { 
    transform: rotateY(-90deg) translateZ(60px); 
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3)); 
}
.cube-face:nth-child(5) { 
    transform: rotateX(90deg) translateZ(60px); 
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.3), rgba(240, 147, 251, 0.3)); 
}
.cube-face:nth-child(6) { 
    transform: rotateX(-90deg) translateZ(60px); 
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.3)); 
}

/* 3D Sphere */
.sphere-container {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation: floatShape 7s ease-in-out infinite;
    animation-delay: 2s;
}

.sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 147, 251, 0.4), rgba(102, 126, 234, 0.2));
    box-shadow: 
        inset -25px -25px 40px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(102, 126, 234, 0.3);
    animation: pulseSphere 3s ease-in-out infinite;
}

@keyframes pulseSphere {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Small Circle near Cube - NEW */
.small-circle-container {
    position: absolute;
    bottom: 39%;
    left: 17%;
    width: 60px;
    height: 60px;
    animation: floatShape 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.small-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(102, 126, 234, 0.6), rgba(240, 147, 251, 0.3));
    box-shadow: 
        inset -10px -10px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(240, 147, 251, 0.4);
    animation: pulseSphere 2.5s ease-in-out infinite;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #1a1a2e;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

nav a.active {
    color: #667eea;
}

nav a:hover {
    color: #667eea;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s;
    border-radius: 2px;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.service-container {

}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    perspective: 1000px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
    font-weight: 800;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #555;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Content Sections */
.content-section {
    padding: 70px 5%;
    background: #fff;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-portfolio-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #e1d6eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
        .review-stars i {
            color: #667eea;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo img {
            height: 60px;
            width: auto;
        }

.section-text {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
}
/* Tech Stack Section */
.tech-stack-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
}

.tech-categories {
    display: grid;
    gap: 50px;
    margin-top: 60px;
}

.tech-category {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.tech-category-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
}

.tech-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(240, 147, 251, 0.15));
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
    display: inline-block;
    transition: transform 0.3s;
}

.tech-item:hover .tech-icon {
    transform: rotateY(360deg);
}

.tech-name {
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
}

/* Code Demo Section */
.code-demo-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.code-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="20" font-family="monospace" font-size="12" fill="rgba(102,126,234,0.1)">{ }</text><text x="60" y="50" font-family="monospace" font-size="12" fill="rgba(118,75,162,0.1)">&lt;/&gt;</text><text x="30" y="80" font-family="monospace" font-size="12" fill="rgba(240,147,251,0.1)">fn()</text></svg>');
    opacity: 0.3;
    animation: codeBackground 20s linear infinite;
}

@keyframes codeBackground {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.code-demo-section .section-title {
    background: linear-gradient(45deg, #fff, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.code-demo-section .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.code-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.code-window {
    background: rgba(30, 30, 46, 0.95);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.code-window:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.code-window-header {
    background: rgba(20, 20, 30, 0.9);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.code-window:hover .code-dots span {
    box-shadow: 0 0 10px currentColor;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27c93f; }

.code-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-title::before {
    content: '●';
    color: #27c93f;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.code-content {
    padding: 25px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
    background: rgba(20, 20, 30, 0.6);
    max-height: 400px;
}

.code-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.code-content::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
}

.code-content::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 4px;
}

.code-content::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

.code-content code {
    color: #e0e0e0;
}

.code-line {
    display: block;
    position: relative;
    padding-left: 50px;
}

.code-line::before {
    content: attr(data-line);
    position: absolute;
    left: 0;
    width: 40px;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
    user-select: none;
}

.code-comment { color: #7ec699; font-style: italic; }
.code-keyword { color: #c792ea; font-weight: bold; }
.code-function { color: #82aaff; font-weight: bold; }
.code-param { color: #f78c6c; }
.code-variable { color: #89ddff; }
.code-property { color: #c792ea; }
.code-number { color: #f78c6c; }
.code-string { color: #c3e88d; }
.code-selector { color: #ffcb6b; }
.code-value { color: #c3e88d; }
.code-operator { color: #89ddff; }
.code-bracket { color: #ffd700; }
/* Reviews Section */
.reviews-section {
    padding: 100px 5%;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.review-stars {
    font-size: 22px;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.author-name {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-title {
    color: #888;
    font-size: 14px;
}

/* 3D Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
    margin-top: 60px;
}

.card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.5s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-20px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.35);
    border-color: #667eea;
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.card p {
    color: #555;
    line-height: 1.8;
}

/* Portfolio Categories */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    padding: 14px 35px;
    background: #fff;
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Category Headings */
.category-heading {
    color: #667eea;
    font-size: 32px;
    margin: 60px 0 30px;
    font-weight: 700;
}

/* Portfolio Collage */
.portfolio-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
}

.collage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.collage-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.placeholder-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.15;
    position: relative;
}

.placeholder-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.collage-info {
    padding: 20px;
    background: #fff;
}

.collage-title {
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.collage-category {
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.portfolio-content p {
    color: #555;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 60px auto 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #667eea;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Services Hero */
.services-hero {
    height: 80vh;
    min-height: 400px;
}

.services-hero h1 {
    font-size: 56px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.pricing-card.featured {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pricing-icon {
    font-size: 56px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-setup {
    font-size: 32px;
    font-weight: 900;
    color: #667eea;
}

.price-monthly {
    font-size: 36px;
    font-weight: 900;
    color: #667eea;
}

.price-recurring,
.price-period {
    font-size: 16px;
    color: #888;
    font-weight: 600;
}

.pricing-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: #667eea;
    padding-left: 10px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing-button:hover::before {
    width: 400px;
    height: 400px;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.featured-button {
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.marketing-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 5%;
    text-align: center;
    background: #fff;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    nav {
        gap: 15px;
    }
    
    .cards-container,
    .portfolio-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .code-showcase {
        grid-template-columns: 1fr;
    }
    
    .cube-container,
    .triangle-container,
    .sphere-container {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .pricing-grid,
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .services-hero h1 {
        font-size: 40px;
    }
}


/* ===== HEXAGON MARKETING CARDS - COMPACT ===== */

.pricing-grid-hexagon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card-hex {
    background: #fff;
    border-radius: 25px;
    padding: 30px 25px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card-hex:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.hex-featured {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    transform: scale(1.05);
}

.hex-featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.featured-badge-hex {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hexagon shape - COMPACT */
.hex-shape {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.pricing-card-hex:hover .hex-shape {
    transform: rotate(180deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.hex-inner {
    width: 92px;
    height: 92px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-hex .pricing-icon {
    font-size: 42px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition: all 0.3s;
}



.hex-content {
    width: 100%;
}

.hex-content .pricing-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.hex-content .pricing-amount {
    margin-bottom: 15px;
}

.hex-content .price-monthly {
    font-size: 32px;
    font-weight: 900;
    color: #667eea;
}

.hex-content .price-period {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.hex-content .pricing-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 14px;
}

.hex-content .pricing-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    text-align: left;
}

.hex-content .pricing-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s;
}

.hex-content .pricing-features li:last-child {
    border-bottom: none;
}

.hex-content .pricing-features li:hover {
    color: #667eea;
    padding-left: 10px;
}

.hex-content .pricing-button {
    display: block;
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.hex-content .pricing-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hex-content .pricing-button:hover::before {
    width: 400px;
    height: 400px;
}

.hex-content .pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* ===== COMPACT DESIGN & HOSTING CARDS ===== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card .pricing-header {
    text-align: center;
    margin-bottom: 18px;
}

.pricing-card .pricing-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.pricing-card .pricing-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.pricing-card .pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.pricing-card .price-setup {
    font-size: 28px;
    font-weight: 900;
    color: #667eea;
}

.pricing-card .price-recurring {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

.pricing-card .pricing-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: center;
    font-size: 14px;
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    flex-grow: 1;
}

.pricing-card .pricing-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s;
}

.pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .pricing-features li:hover {
    color: #667eea;
    padding-left: 10px;
}

.pricing-card .pricing-button {
    display: block;
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 14px;
}

.pricing-card .pricing-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing-card .pricing-button:hover::before {
    width: 400px;
    height: 400px;
}

.pricing-card .pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.pricing-card.featured .featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* ===== MINIMAL ROW-BASED SEO LAYOUT ===== */

.pricing-table {
    margin-top: 60px;
}

.pricing-row-minimal {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 30px;
    align-items: center;
    border: 2px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s;
}

.pricing-row-minimal:hover {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    transform: translateX(10px);
}

.row-featured {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    position: relative;
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.row-icon {
    font-size: 56px;
    text-align: center;
}

.row-content {
    flex: 1;
}

.row-title {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.row-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.row-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.row-pricing {
    text-align: center;
    min-width: 180px;
}

.row-price {
    font-size: 36px;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 15px;
}

.row-price span {
    font-size: 16px;
    color: #888;
    font-weight: 600;
}

.btn-minimal {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-minimal-featured {
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 1024px) {
    .pricing-grid-hexagon {
        grid-template-columns: 1fr;
    }
    
    .hex-featured {
        transform: scale(1);
    }
    
    .hex-featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .pricing-row-minimal {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .row-icon {
        margin: 0 auto;
    }
    
    .row-content {
        text-align: center;
    }
    
    .row-features {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-row-minimal:hover {
        transform: translateX(0);
    }
}

/* ===== PORTFOLIO PAGE SPECIFIC STYLES ===== */

/* Portfolio Hero */
.portfolio-hero {
    padding: 150px 5% 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    text-align: center;
    position: relative;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.portfolio-hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

/* ===== WEBSITES SECTION ===== */
.websites-section {
    padding: 100px 5%;
    background: #ffffff;
}

.website-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.website-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.website-mockup {
    position: relative;
    background: #2d2d2d;
}

.browser-bar {
    background: #3a3a3a;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #4a4a4a;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    flex: 1;
    background: #2a2a2a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #999;
    text-align: center;
}

.website-screen {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.screen-gradient {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s ease;
    opacity: 1;
}

.website-card:hover .screen-gradient {
    transform: scale(1.1);
}

/* Gradient variations - More vibrant and visible */
.gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.gradient-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.gradient-7 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.gradient-8 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.gradient-9 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.gradient-10 { background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%); }
.gradient-11 { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.gradient-12 { background: linear-gradient(135deg, #f77062 0%, #fe5196 100%); }

.website-info {
    padding: 25px;
    background: #ffffff;
}

.website-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.website-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tags span {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.view-project-btn:hover {
    gap: 12px;
    color: #764ba2;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

.carousel-control-prev {
        display: none;

    left: 0;
}

.carousel-control-next {
    right: 0;
}


.carousel-control-icon {
    font-size: 24px;
    color: #fff;
}

/* ===== GRAPHIC DESIGN COLLAGE ===== */
.graphic-design-section {
    padding: 100px 5%;
    background: #f8f9ff;
}

.design-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

/* Grid sizes */
.collage-item.square {
    grid-column: span 1;
    grid-row: span 1;
}

.collage-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.collage-item.tall {
    grid-column: span 1;
    grid-row: span 2;
}

.collage-item.large-horizontal {
    grid-column: span 3;
    grid-row: span 1;
}

.collage-item.medium {
    grid-column: span 1;
    grid-row: span 1;
}

.collage-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.placeholder-design {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    transition: all 0.5s;
    position: relative;
}

.placeholder-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

/* Design gradient variations - More vibrant */
.design-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.design-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.design-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.design-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.design-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.design-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.design-7 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.design-8 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.design-9 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.design-10 { background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%); }
.design-11 { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.design-12 { background: linear-gradient(135deg, #f77062 0%, #fe5196 100%); }

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.collage-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.collage-item:hover .placeholder-design {
    opacity: 0.5;
    transform: scale(1.2);
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zoom-btn:hover {
    background: #fff;
    color: #667eea;
    transform: scale(1.1);
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.lightbox-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    max-width: 1200px;
    max-height: 80vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image .placeholder-design {
    width: 100%;
    height: 600px;
    opacity: 1;
}

.lightbox-info {
    text-align: center;
    color: #fff;
    padding: 25px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 15px 15px;
    backdrop-filter: blur(10px);
}

.lightbox-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lightbox-info p {
    font-size: 16px;
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .design-collage {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .website-carousel {
        padding: 40px 60px;
    }
}

@media (max-width: 992px) {
    .design-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .collage-item.large-horizontal {
        grid-column: span 2;
    }
    
    .website-carousel {
        padding: 40px 50px;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 120px 5% 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    
    .carousel-control-icon {
        font-size: 18px;
    }
    
    .design-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .collage-item.large-horizontal,
    .collage-item.wide,
    .collage-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
/* Mobile Header Improvements */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 5%;
        gap: 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo img {
        height: 45px;
    }
    
    nav {
        gap: 15px;
        font-size: 14px;
    }
    
    nav a {
        padding: 3px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 4%;
        gap: 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        height: 35px;
    }
    
    nav {
        gap: 10px;
        font-size: 13px;
    }
    
    nav a {
        font-size: 13px;
    }
}