/*
 * Web Enhance - Blue Orange Kids Playground Theme
 * Raleway Font - PALE BLUE Background Version
 */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-blue: #0066cc;
    --primary-orange: #F5A623;
    
    /* Blue Shades */
    --blue-dark: #0052a3;
    --blue-light: #4B9FD8;
    --blue-pale: #E6F2FF;
    
    /* Orange Shades */
    --orange-dark: #D68910;
    --orange-light: #FFB84D;
    --orange-pale: #FFF5E6;
    
    /* Neutral */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #ddd;
    --success-color: #00ff00;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #E6F2FF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== MATRIX BACKGROUND ==================== */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05;
}

#matrix-canvas {
    display: block;
    background-color: transparent;
}

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
    background: #E6F2FF;
    border-bottom: 4px solid var(--primary-orange);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

/* ==================== 3D LOGO CONTAINER ==================== */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    padding: 10px;
}

#logo-canvas {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 15px rgba(0, 102, 204, 0.25));
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0, 102, 204, 0.25));
}

/* ==================== SOFT THIN TEXT STYLING ==================== */
.site-title-3d {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    
    color: var(--primary-blue);
    text-shadow: 
        0px 0px 15px rgba(0, 102, 204, 0.2),
        0px 0px 30px rgba(245, 166, 35, 0.15);
    
    -webkit-text-stroke: 0.5px rgba(0, 102, 204, 0.3);
    
    transform: perspective(1200px) rotateX(2deg);
    transition: all 0.3s ease;
}

.site-title-3d:hover {
    transform: perspective(1200px) rotateX(1deg) translateY(-2px);
    text-shadow: 
        0px 0px 20px rgba(0, 102, 204, 0.3),
        0px 0px 40px rgba(245, 166, 35, 0.2);
    color: var(--primary-blue);
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 0;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-orange);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    border-radius: 2px;
}

/* ==================== FLOATING SHAPES ANIMATION ==================== */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    top: 40%;
    right: 15%;
    animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
    bottom: 10%;
    left: 20%;
    animation: float 12s ease-in-out infinite 2s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
    top: 50%;
    right: 5%;
    animation: float 9s ease-in-out infinite 1.5s;
}

.shape-5 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    bottom: 20%;
    right: 25%;
    animation: float 11s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)" /></svg>');
    opacity: 0.1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    text-shadow: 
        0px 0px 20px rgba(245, 166, 35, 0.3),
        0px 0px 40px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 600;
}

/* ==================== MOVING LIGHT EFFECT ==================== */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.2) 0%, rgba(245, 166, 35, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: moveLight 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

@keyframes moveLight {
    0% {
        left: 15%;
        top: 30%;
        opacity: 0.6;
    }
    50% {
        left: 85%;
        top: 50%;
        opacity: 0.8;
    }
    100% {
        left: 15%;
        top: 30%;
        opacity: 0.6;
    }
}

/* ==================== BUTTONS ==================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 8px 20px rgba(245, 166, 35, 0.35),
        inset 0 -3px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(245, 166, 35, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, var(--blue-pale) 0%, white 100%);
}

.content-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-blue);
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 15px rgba(0, 102, 204, 0.2),
        0px 0px 30px rgba(245, 166, 35, 0.1);
}

.content-section p {
    color: #555;
}

/* ==================== CARDS GRID ==================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: white;
    border: none;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    
    box-shadow: 
        0 0 0 12px rgba(0, 102, 204, 0.08),
        0 0 0 24px rgba(245, 166, 35, 0.06),
        0 15px 40px rgba(0, 102, 204, 0.15);
    
    position: relative;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 0 0 12px rgba(0, 102, 204, 0.12),
        0 0 0 24px rgba(245, 166, 35, 0.1),
        0 25px 50px rgba(0, 102, 204, 0.25);
}

.card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.1);
}

.card p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.card-price {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0;
}

.card-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.card-features li {
    margin: 15px 0;
    color: #555;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.card-features li:before {
    content: "🍊";
    margin-right: 12px;
    font-size: 20px;
    display: inline-block;
}

/* ==================== FEATURED PACKAGES PREVIEW ==================== */
.featured-packages {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.65) 0%, rgba(75, 159, 216, 0.60) 100%);
    padding: 80px 0;
}

.featured-packages .container {
    position: relative;
    z-index: 2;
}

/* ==================== PACKAGE CARDS ==================== */
.package-card {
    position: relative;
}

.featured-package {
    border: none;
    transform: scale(1.08);
    box-shadow: 
        0 0 0 12px rgba(245, 166, 35, 0.12),
        0 0 0 24px rgba(0, 102, 204, 0.08),
        0 25px 60px rgba(245, 166, 35, 0.25) !important;
}

.featured-package:hover {
    transform: scale(1.08) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

/* ==================== ADD-ONS SECTION ==================== */
.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.add-on-card {
    background: white;
    border: none;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 8px rgba(245, 166, 35, 0.08),
        0 10px 30px rgba(0, 102, 204, 0.1);
}

.add-on-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 8px rgba(245, 166, 35, 0.12),
        0 15px 40px rgba(0, 102, 204, 0.15);
}

.add-on-card h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.add-on-price {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-orange);
    margin: 10px 0 15px;
}

.add-on-card p {
    color: #666;
    font-size: 14px;
}

/* ==================== FAQ SECTION ==================== */
.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: linear-gradient(135deg, white 0%, var(--orange-pale) 100%);
    border: none;
    border-left: 6px solid var(--primary-orange);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.2);
}

.faq-item h4 {
    color: var(--primary-blue);
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.faq-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    text-shadow: 
        0px 0px 20px rgba(245, 166, 35, 0.3),
        0px 0px 40px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 600;
}

/* ==================== PORTFOLIO PREVIEW ==================== */
.portfolio-preview {
    margin-top: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 8px rgba(0, 102, 204, 0.08),
        0 12px 30px rgba(0, 102, 204, 0.15);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 0 8px rgba(245, 166, 35, 0.1),
        0 18px 45px rgba(0, 102, 204, 0.25);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item-info {
    padding: 25px;
    background: linear-gradient(135deg, white 0%, var(--blue-pale) 100%);
}

.portfolio-item-info h3 {
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.portfolio-item-info p {
    color: #666;
    font-size: 14px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #ccc;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.3px rgba(255, 255, 255, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.footer-section p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
}

/* ==================== PORTFOLIO TAGS ==================== */
.portfolio-tags {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--blue-dark));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.portfolio-category {
    color: var(--primary-blue);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 10px 0 5px 0;
    letter-spacing: 1px;
}

.portfolio-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

/* ==================== RESULTS SECTION ==================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-card {
    background: white;
    border: none;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 10px rgba(245, 166, 35, 0.08),
        0 15px 40px rgba(0, 102, 204, 0.15);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 10px rgba(245, 166, 35, 0.12),
        0 20px 50px rgba(0, 102, 204, 0.25);
}

.result-number {
    font-family: 'Raleway', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.result-label {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.result-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== TECHNOLOGIES SECTION ==================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tech-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 8px rgba(0, 102, 204, 0.08),
        0 10px 30px rgba(0, 102, 204, 0.1);
}

.tech-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.tech-card h4 {
    color: var(--primary-blue);
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-orange);
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.tech-card ul {
    list-style: none;
}

.tech-card ul li {
    color: #555;
    padding: 8px 0;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

.tech-card ul li:last-child {
    border-bottom: none;
}

.tech-card ul li:before {
    content: "🍊 ";
    margin-right: 10px;
    font-size: 16px;
}

/* ==================== PROCESS STEPS ==================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    border: none;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 8px rgba(0, 102, 204, 0.08),
        0 12px 30px rgba(0, 102, 204, 0.1);
}

.process-step:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 
        0 0 0 8px rgba(245, 166, 35, 0.2),
        0 12px 25px rgba(245, 166, 35, 0.3);
}

.process-step h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.4px rgba(0, 102, 204, 0.3);
    text-shadow: 
        0px 0px 10px rgba(0, 102, 204, 0.15),
        0px 0px 20px rgba(245, 166, 35, 0.08);
}

.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== LOGO GALLERY ==================== */
.logo-gallery {
    margin-top: 50px;
}

.logo-item {
    transition: all 0.3s ease;
}

.logo-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.logo-showcase:hover {
    background: #f9f9f9;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        width: 100px;
        height: 100px;
    }

    .site-title-3d {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .main-nav {
        margin-left: 0;
        width: 100%;
    }

    .main-nav ul {
        justify-content: center;
        gap: 20px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero {
        padding: 60px 0;
    }

    .content-section h2 {
        font-size: 32px;
    }

    .cards-grid,
    .portfolio-grid,
    .add-ons-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .featured-package {
        transform: scale(1);
    }

    .featured-package:hover {
        transform: scale(1) translateY(-15px);
    }

    .card {
        padding: 25px;
    }

    .card h3 {
        font-size: 22px;
    }

    .card-price {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 220px;
        height: 220px;
    }

    .shape-4 {
        width: 130px;
        height: 130px;
    }

    .shape-5 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 80px;
        height: 80px;
    }

    .site-title-3d {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .site-title {
        font-size: 22px;
    }

    .main-nav a {