/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #4a45b1;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f4f4f4;
    --gray-color: #2a2a2a;
    --light-gray: #444;
    --transition: all 0.3s ease;
    
    /* Background pattern */
    --bg-pattern: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fa0707;
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Remove individual section backgrounds */
.about,
.process-section,
.services,
.portfolio,
.contact,
.testimonials,
.cta-section {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* Section Base Styles */
section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: #0f0f1a;
    color: white;
    transition: background 0.5s ease;
}

/* Keep hero section's background gradient */
.hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%) !important;
}

/* Remove pattern overlay from all sections */
section::before {
    content: none;
}

/* Add subtle overlay for depth */
section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Section content container */
section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.decorative-shape {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    opacity: 0.8;
    z-index: 0;
    transition: all 0.5s ease;
}

.testimonial-card:hover .decorative-shape {
    transform: scale(1.1) rotate(10deg);
    opacity: 0.5;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
    height: 100px; /* Taller navbar to fit bigger logo */
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.15rem 0;
    background-color: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 70px; /* Slightly smaller when scrolled */
}

.navbar.scrolled .nav-logo img {
    height: 60px !important; /* Slightly smaller logo when scrolled */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.navbar .co.nav-links {
    display: flex;
    list-style: none;
    margin: 0 auto 0 0;
    padding: 0 0 0 0;
    align-items: center;
}

/* Navigation Logo - Force to left */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    margin-right: 3rem;
    height: 100%;
    padding: 0;
    position: relative;
}

.nav-logo img {
    height: 100px !important;
    width: auto !important;
    max-height: 100% !important;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

/* Hover effect for logo */
.nav-logo:hover img {
    transform: scale(1.05);
}

/* Navigation Links - Force to right */
.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0 2rem 0 auto; /* Added right margin to push links further left */
    padding: 0 0 0 0; /* Removed right padding */
    list-style: none;
    align-items: center;
    position: relative;
    right: -100px; /* Moves the entire nav links container to the right */
}

.nav-links li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Add underline effect on hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Removed duplicate logo styles */

.nav-link {
    color: #b8b8d1;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #8a85ff; /* Changed to purple to match theme */
    transition: all 0.3s ease;
}

/* Mobile Menu */
/* Mobile Navigation */
@media (max-width: 992px) {
    .navbar .container {
        padding: 0 1.5rem;
    }
    
    .navbar {
        height: 80px; /* Slightly taller navbar on mobile */
    }
    
    .nav-logo {
        margin-right: 0;
        z-index: 100;
        padding: 0;
    }
    
    .nav-logo img {
        height: 80px !important; /* Larger logo on mobile */
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 70px !important; /* Slightly smaller when scrolled on mobile */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 100px 1.5rem 2rem;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999; /* Increased z-index to ensure it stays above other elements */
        margin: 0;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 1000; /* Increased z-index to ensure it stays above other elements */
        position: relative;
        margin-left: auto;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #8a85ff; /* Changed to purple to match theme */
        transition: all 0.3s ease;
        transform-origin: left center;
    }
    
    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(4px, -1px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(4px, 1px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    color: white;
    padding-top: 70px; /* Reduced to match smaller navbar */
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .section-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.page-header .section-header p {
    font-size: 1.25rem;
    color: #b8b8d1;
    max-width: 700px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #0f0f1a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-card {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 aspect ratio */
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 24, 47, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 20px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.portfolio-info p {
    color: #b8b8d1;
    margin-bottom: 1.5rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    color: #6c63ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    color: #8a85ff;
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

/* Design Placeholder with Logo */
.design-placeholder {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: rgba(15, 15, 25, 0.25);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(108, 99, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    box-sizing: border-box;
}

.logo-container {
    position: relative;
    z-index: 10;
    width: 250px;  /* Reduced from 300px */
    height: 250px;  /* Reduced from 300px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.design-logo {
    width: 75%;  /* Slightly larger percentage of container */
    height: 75%;  /* Slightly larger percentage of container */
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(108, 99, 255, 0.5));
    animation: float 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
    margin: 0;
}

.ready-text {
    color: #fff;
    font-size: 1.2rem;      /* Reduced from 1.8rem */
    font-weight: 600;       /* Slightly lighter weight */
    text-transform: uppercase;
    letter-spacing: 1.2px;  /* Slightly tighter letter spacing */
    margin: -20px 0 0 0;    /* Adjusted negative margin */
    padding: 0;
    text-shadow: 0 0 8px rgba(108, 99, 255, 0.7);
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
    opacity: 0.9;
    line-height: 1.2;       /* Slightly increased for better readability */
    position: relative;
    z-index: 1;
    transform: translateY(-40%);  /* Slightly less upward movement */
}

/* Logo glow effect has been removed as per user request */
.logo-glow {
    display: none;
}

.design-orbits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.orbit {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    transform-origin: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

.orbit-1 {
    width: 80%;
    height: 80%;
    border-color: rgba(108, 99, 255, 0.1);
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-2 {
    width: 120%;
    height: 120%;
    border-color: rgba(108, 99, 255, 0.08);
    animation-duration: 40s;
}

.orbit-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(108, 99, 255, 0.15);
    animation-duration: 20s;
    animation-direction: reverse;
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    opacity: 0.9;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.dot-1 { top: 15%; left: 15%; animation: pulse 3s ease-in-out infinite; }
.dot-2 { top: 85%; left: 85%; animation: pulse 3.5s ease-in-out infinite 0.5s; }
.dot-3 { top: 15%; left: 85%; animation: pulse 2.8s ease-in-out infinite 0.8s; }
.dot-4 { top: 85%; left: 15%; animation: pulse 3.2s ease-in-out infinite 0.3s; }

/* Flowing Elements */
.flowing-element {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(1px);
    opacity: 0.7;
    animation: flow 20s linear infinite;
    z-index: 2;
}

.element-1 {
    width: 15px;
    height: 15px;
    top: 0;
    left: 50%;
    background: linear-gradient(45deg, #6c63ff, #8a85ff);
    animation-duration: 25s;
    animation-delay: 0s;
}

.element-2 {
    width: 20px;
    height: 20px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(45deg, #6c63ff, #4338ca);
    animation-duration: 30s;
    animation-delay: -10s;
}

.element-3 {
    width: 12px;
    height: 12px;
    top: 50%;
    right: 0;
    background: linear-gradient(45deg, #6c63ff, #a29bfe);
    animation-duration: 35s;
    animation-delay: -5s;
}

.element-4 {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 0;
    background: linear-gradient(45deg, #6c63ff, #5f5bff);
    animation-duration: 40s;
    animation-delay: -15s;
}

.element-5, .element-6 {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.6;
}

.element-5 { top: 30%; right: 30%; animation-duration: 20s; animation-delay: -2s; }
.element-6 { bottom: 30%; left: 30%; animation-duration: 25s; animation-delay: -12s; }

/* Floating shapes have been removed as per user request */

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hide the entire design placeholder section on mobile */
    .design-placeholder {
        display: none !important;
    }
    
    /* Center the contact content on mobile */
    #contact {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
        padding: 0 1.5rem;
    }
    
    .contact-info {
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-card {
        width: 100%;
        margin: 0 auto;
    }
    
    /* Portfolio Section Mobile Adjustments */
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 1.5rem;
    }
    
    .portfolio-item {
        margin-bottom: 0;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio .section-header {
        padding: 0 1.5rem;
    }
    
    .portfolio-cta {
        margin-top: 30px;
        padding: 0 1.5rem;
    }
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes flow {
    0% {
        transform: rotate(0deg) translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        opacity: 0.8;
        filter: blur(0.5px);
    }
    50% {
        transform: rotate(180deg) translateX(10px) translateY(10px);
        opacity: 0.5;
    }
    75% {
        opacity: 0.9;
        filter: blur(1px);
    }
    100% {
        transform: rotate(360deg) translateX(0) translateY(0);
        opacity: 0.3;
    }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes glow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(0, 40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    color: #b8b8d1;
    margin-bottom: 2.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header .section-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .section-header p {
        font-size: 1.1rem;
    }
    
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-header .section-header h1 {
        font-size: 2rem;
    }
    
    .page-header .section-header p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero-logo {
        top: 10px;
    }
    
    .hero-logo img {
        height: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin: 1.5rem 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.2);
    color: #6c63ff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 2rem 0 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    text-align: center;
}

.highlight {
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b8b8d1;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    max-width: 80%;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem auto 0;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #6c63ff;
    color: #6c63ff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    flex: 1;
    max-width: 600px;
    height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover .hero-main-image {
    transform: scale(1.03);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.2));
    backdrop-filter: blur(10px);
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    color: #6c63ff;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid currentColor;
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: #b8b8d1;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Section - Inherits base section styles */

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #0a0a14;
}

.about .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.about .section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.about .section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    border-radius: 2px;
}

.about .section-header p {
    font-size: 1.2rem;
    color: #b8b8d1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(108, 99, 255, 0.2);
}

.card-content {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 2.5rem;
    color: #6c63ff;
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(108, 99, 255, 0.2);
}

.about-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-card p {
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Intro Card */
.intro-card {
    grid-column: 1 / -1;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(15, 15, 26, 0.8));
    text-align: center;
}

.intro-card .card-content {
    align-items: center;
    padding: 4rem 3rem;
}

.intro-card .card-icon {
    margin: 0 auto 2rem;
}

/* Core Skills Card */
.skills-card {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(15, 15, 26, 0.8));
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    background: rgba(108, 99, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-item:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-item i {
    color: #6c63ff;
    font-size: 1.1rem;
    margin-right: 0.8rem;
    width: 24px;
    text-align: center;
}

.skill-item span {
    color: #d1d1e9;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Values Card */
.values-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(15, 15, 26, 0.8));
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.values-list li {
    color: #d1d1e9;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.values-list i {
    color: #6c63ff;
    margin-right: 0.7rem;
    font-size: 0.9rem;
}

/* Team Card */
.team-card {
    background: rgba(26, 26, 46, 0.5);
}

.team-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-stats .stat-item {
    text-align: center;
    flex: 1;
}

.team-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6c63ff;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.team-stats .stat-label {
    font-size: 0.9rem;
    color: #b8b8d1;
}

/* Process Card Button */
.process-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    width: 100%;
    text-align: center;
}

.process-card-button i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.process-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.process-card-button:hover i {
    transform: translateX(3px);
}

/* Process Card */
.process-card {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(15, 15, 26, 0.8));
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #6c63ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
}

.step-text {
    font-size: 0.85rem;
    color: #b8b8d1;
    text-align: center;
    margin-top: 0.3rem;
}

/* Highlight Cards */
.highlight-card {
    background: rgba(26, 26, 46, 0.5);
}

.card-features {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.card-features li {
    color: #d1d1e9;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.card-features i {
    color: #6c63ff;
    margin-right: 0.7rem;
    font-size: 0.8rem;
}

.innovation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.innovation-tags span {
    background: rgba(108, 99, 255, 0.1);
    color: #b8b8d1;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.client-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6c63ff;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8b8d1;
}

/* Skills Card */
.skills-card {
    grid-column: 1 / -1;
    max-width: 100%;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
}

.skills-card .card-content {
    padding: 3rem;
    position: relative;
}

.skills-card h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.skills-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    border-radius: 2px;
}

.skill {
    margin-bottom: 2rem;
    position: relative;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    align-items: center;
}

.skill h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.skill h3::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 3px;
    background: #6c63ff;
    margin-right: 10px;
    border-radius: 2px;
}

.skill-percent {
    color: #6c63ff;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(26, 26, 46, 0.6);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #6c63ff, #8a85ff);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: progressShine 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .about-grid {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 1200px) {
    .about .section-header h2 {
        font-size: 2.4rem;
    }
    
    .about .section-header p {
        font-size: 1.1rem;
    }
    
    .about-card h3 {
        font-size: 1.4rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-card,
    .skills-card {
        grid-column: 1 / -1;
    }
    
    .card-content {
        padding: 2rem;
    }
    
    .skills-card .card-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 5rem 0;
    }
    
    .about .section-header h2 {
        font-size: 2rem;
    }
    
    .about .section-header p {
        font-size: 1.05rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .intro-card .card-content {
        padding: 3rem 2rem;
    }
    
    .client-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .about .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about .section-header p {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1.8rem;
    }
    
    .skills-card .card-content {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .innovation-tags {
        justify-content: center;
    }
    
    .innovation-tags span {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #0f0f1a;
    position: relative;
    overflow: hidden;
}

.services .section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 60px;
}

.services .section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #6c63ff;
    border-radius: 3px;
}

.services .section-header p {
    color: #a0aec0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 99, 255, 0.2);
}

.service-content {
    text-align: center;
    position: relative;
}

.service-icon {
    font-size: 2.5rem;
    color: #6c63ff;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px);
    color: #8a84ff;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #6c63ff;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    color: #a0aec0;
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 70px 0;
    }
    
    .services .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(138, 133, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.portfolio .section-header {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1e293b;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108, 99, 255, 0.3);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.9) 0%, rgba(138, 133, 255, 0.9) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    text-align: center;
}

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

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.portfolio-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    color: #e2e8f0;
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.portfolio-cta .cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    transition: all 0.3s ease;
}

.portfolio-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.5);
}

/* Contact Section - Inherits base section styles */

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 20% 70%, rgba(138, 133, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.contact .section-header {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: #6c63ff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    transition: all 0.3s ease;
}

.contact-card:hover .info-icon i {
    transform: rotate(10deg) scale(1.1);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: #8a85ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-link i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: #6c63ff;
}

.info-link:hover i {
    transform: translateX(3px);
}

.contact-form {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
    opacity: 0.7;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .cta-button {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.contact-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.5);
}

/* Diff Line Styles */
.diff-line-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 60px 0;
}

.diff-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--primary-color), 
        var(--secondary-color), 
        transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.diff-line-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom, 
        var(--primary-color), 
        var(--secondary-color));
    transition: height 1s ease-out;
}

.diff-dots {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.diff-dot {
    width: 20px;
    height: 20px;
    background: var(--dark-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    margin-left: -9px;
    position: relative;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.diff-dot.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
}

.diff-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.diff-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Process Section */
.process-section {
    position: relative;
    padding: 1rem 0 4rem 0;
    margin-top: -5rem;
    background-color: var(--darker-color);
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-pattern);
    opacity: 0.1;
    z-index: 0;
}

.timeline-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    min-height: 1600px;
    display: flex;
    justify-content: center;
}

.timeline-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.timeline-curve {
    fill: none;
    stroke: #6c63ff; /* Fallback color */
    stroke: url(#timelineGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: drawPath 3s ease-out forwards;
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 8px rgba(108, 99, 255, 0.5));
}

/* Add gradient definition */
.timeline-path defs stop {
    stop-color: var(--primary-color);
}

.timeline-path defs stop:last-child {
    stop-color: var(--secondary-color);
}

@keyframes drawPath {
    from {
        stroke-dashoffset: 3000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.process-timeline {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.process-step {
    position: absolute;
    width: 40%;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: rgba(30, 30, 50, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Position each step along the timeline - moved up */
.process-step:nth-child(1) { top: 3%; left: 55%; }
.process-step:nth-child(2) { top: 18%; right: 55%; }
.process-step:nth-child(3) { top: 33%; left: 55%; }
.process-step:nth-child(4) { top: 48%; right: 55%; }
.process-step:nth-child(5) { top: 63%; left: 55%; }
.process-step:nth-child(6) { top: 78%; right: 55%; }

.process-step.visible {
    opacity: 1;
}

/* Initial positions for animation */
.process-step:nth-child(odd) {
    transform: translateX(30px);
}

.process-step:nth-child(even) {
    transform: translateX(-30px);
}

/* Animate to final position */
.process-step.visible:nth-child(odd) {
    transform: translateX(0);
}

.process-step.visible:nth-child(even) {
    transform: translateX(0);
}

.step-content {
    background: rgba(30, 30, 50, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: all 0.4s ease;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: 15px;
    left: 30px;
    background: var(--dark-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    z-index: 3;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
}

.step-icon i {
    transition: all 0.3s ease;
}

.process-step:hover .step-icon i {
    transform: rotate(10deg) scale(1.1);
}

.step-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.step-desc {
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-step {
        width: 100%;
        left: 0 !important;
        transform: translateX(0) !important;
        padding-left: 4rem;
        padding-right: 1rem;
    }
    
    .process-step::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 40px;
        width: 20px;
        height: 2px;
        background: var(--primary-color);
    }
    
    .step-number {
        left: 10px;
    }
    
    .step-content {
        margin-left: 40px;
    }
    
    .timeline-path {
        left: 40px;
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 5rem 0;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
}

/* Add gradient definition */
.timeline-path defs {
    position: absolute;
}

.timeline-path stop {
    transition: stop-color 0.5s ease;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(138, 133, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.services .section-header {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(138, 133, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 80px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6c63ff 0%, #8a85ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #8a85ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link i {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #6c63ff;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #0a0a0a 100%);
    color: #e2e8f0;
    position: relative;
    padding-top: 4rem; /* Reduced from 6rem */
    margin-top: 4rem; /* Reduced from 6rem */
    overflow: hidden;
    background: #000000;
}

.footer-waves {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    color: #000000;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 1.5rem; /* Reduced bottom padding */
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem; /* Reduced from 4rem */
    padding-bottom: 2.5rem; /* Reduced from 4rem */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo img {
    height: 100px; /* Reduced from 80px */
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    transition: var(--transition);
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footer-description {
    color: #b8b8d1;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    line-height: 1.6; /* Slightly tighter line height */
    opacity: 0.9;
    font-size: 0.95rem; /* Slightly smaller font */
}

.footer-social {
    display: flex;
    gap: 0.8rem; /* Reduced from 1rem */
    margin-top: 1.5rem; /* Reduced from 2rem */
}

.social-icon {
    width: 36px; /* Reduced from 40px */
    height: 36px; /* Reduced from 40px */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem; /* Reduced from 1rem */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Reduced from 2rem */
}

.footer-title {
    color: white;
    font-size: 1rem; /* Reduced from 1.1rem */
    font-weight: 600;
    margin-bottom: 1.25rem; /* Reduced from 1.5rem */
    position: relative;
    padding-bottom: 0.5rem; /* Reduced from 0.75rem */
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.6rem; /* Reduced from 0.8rem */
}

.footer-link {
    color: #b8b8d1;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-size: 0.9rem; /* Reduced from 0.95rem */
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 5px;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding: 1.5rem 0 0.75rem; /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem; /* Reduced from 1rem */
}

.copyright {
    color: #b8b8d1;
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright a {
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary-color);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-link {
    color: #b8b8d1;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.legal-link:hover {
    color: var(--primary-color);
}

.divider {
    color: #475569;
    font-size: 0.8rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1.5rem 2rem;
    }
    
    .footer-main {
        padding-bottom: 3rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-link:hover {
        padding-left: 0;
        padding-right: 5px;
    }
    
    .footer-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link:hover::after {
        width: 0;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-icon {
        margin: 0 0 0.5rem 0;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.contact-button-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-button {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    z-index: 10;
    outline: none;
    overflow: hidden;
}

.contact-button i {
    position: absolute;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: rotate(0deg);
}

.contact-button .chat-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.contact-button .close-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
}

.contact-button.active {
    transform: rotate(180deg);
}

.contact-button.active .chat-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
}

.contact-button.active .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.contact-button:active {
    transform: scale(0.95);
}

/* Ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Touch feedback */
.contact-button.touch-active {
    transform: scale(0.95);
}

/* Pulse wave animation */
.pulse-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 3s infinite;
    z-index: 1;
}

.pulse-circle.delay-1 {
    animation-delay: 1s;
}

.pulse-circle.delay-2 {
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.contact-options {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    padding-bottom: 15px;
    transform-origin: bottom center;
    pointer-events: none;
}

.floating-contact.active .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateY(10px) scale(0.8) rotate(-180deg);
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transform-origin: center center;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.floating-contact.active .contact-option {
    animation: spinIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes spinIn {
    0% {
        transform: translateY(10px) scale(0.8) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.floating-contact:not(.active) .contact-option {
    animation: spinOut 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes spinOut {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(10px) scale(0.8) rotate(180deg);
        opacity: 0;
    }
}

.floating-contact.active .contact-option:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-contact.active .contact-option:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-contact.active .contact-option:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover effects for contact options */
.contact-option:hover {
    transform: translateY(-3px) scale(1.1) rotate(10deg) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: #E1306C;
}

.phone {
    background: #1DA1F2;
}

.contact-option:hover {
    transform: scale(1.1) !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6c63ff, #8a85ff);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-text,
    .skills,
    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 28px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--darker-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo,
    .footer-logo p {
        max-width: 100%;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-item {
        height: 200px;
    }
}

/* Timeline Section */
.timeline.process-section {
    padding: 2rem 0 8rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -4rem;
}

.timeline-section .section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #6c63ff, #a29bfe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-section .section-header p {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    color: #b8b8d1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), transparent);
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: var(--primary-color);
    z-index: 2;
    transition: height 0.5s ease-out;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 40px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6c63ff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.3);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.visible .timeline-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

.timeline-content {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: calc(100% - 40px);
    max-width: 400px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.3);
    background: rgba(26, 26, 46, 0.8);
}

.timeline-content:hover .timeline-icon {
    transform: rotate(10deg) scale(1.05);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(162, 155, 254, 0.2));
}

.timeline-content h3 {
    color: #fff;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6c63ff, #a29bfe);
    border-radius: 3px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(138, 133, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #6c63ff;
    transition: all 0.3s ease;
}

.timeline-icon i {
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-icon i {
    transform: rotate(10deg) scale(1.1);
}

.timeline-content p {
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before,
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 20px;
        justify-content: flex-start;
        margin-bottom: 40px;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 22px;
        right: auto;
        top: 40px;
    }
    
    .timeline-content {
        width: 100%;
        padding: 1.5rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-section .section-header h2 {
        font-size: 2rem;
    }
    
    .timeline-section .section-header p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* ==========================================================================
   Package Recommendation Quiz
   ========================================================================== */
.package-quiz {
    padding: 80px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.quiz-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
    border-radius: 3px;
}

.quiz-question {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quiz-option {
    background: rgba(138, 133, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.quiz-option:hover {
    background: rgba(138, 133, 255, 0.2);
    transform: translateY(-2px);
}

.quiz-option:active {
    transform: translateY(0);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-prev,
.quiz-next,
.quiz-restart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quiz-prev {
    background: transparent;
    border: 2px solid var(--primary-color);
    opacity: 0.7;
}

.quiz-prev:hover {
    opacity: 1;
    background: rgba(138, 133, 255, 0.1);
}

.quiz-next:hover,
.quiz-restart:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.quiz-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.quiz-counter .current {
    color: var(--primary-color);
    font-weight: 600;
}

.quiz-result {
    display: none;
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(138, 133, 255, 0.2);
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    animation: fadeIn 0.5s ease;
}

/* Removed overlay styles as they're no longer needed */

.quiz-result h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.result-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
}

.result-package {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 8px;
}

.result-package h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.result-package p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-package .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.quiz-restart {
    margin: 2rem auto 0;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Package highlight effect */
.package-card.highlighted {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(138, 133, 255, 0.4);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

/* Next button disabled state */
.quiz-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(138, 133, 255, 0.3);
}

.quiz-restart:hover {
    background: rgba(138, 133, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .quiz-container {
        padding: 1.5rem;
    }
    
    .quiz-question h3 {
        font-size: 1.2rem;
    }
    
    .quiz-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-option {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    .result-content {
        grid-template-columns: 1fr;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-prev {
        order: 1;
    }
    
    .quiz-next {
        order: 2;
    }
    
    .quiz-counter {
        order: 3;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   Packages Section
   ========================================================================== */
.packages {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(20, 20, 30, 0.9));
    overflow: hidden;
}

.packages .section-header h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.packages .section-header p {
    color: #a0aec0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 99, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover,
.package-card.highlighted {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.3);
    background: rgba(17, 24, 39, 0.95);
}

.package-card.highlighted {
    position: relative;
    z-index: 100;
    animation: floatCard 2s ease-in-out infinite, highlightBorder 2s ease-in-out infinite;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.3) !important;
    border: 2px solid var(--primary-color);
    background: rgba(17, 24, 39, 0.95);
}

/* Make sure the hover effect is more prominent than the default */
.package-card.highlighted:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(108, 99, 255, 0.4) !important;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes highlightBorder {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
    }
}

#packages {
    scroll-margin-top: 100px; /* Space for fixed header */
    scroll-behavior: smooth;
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Base package icon styles */
.package-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* WordPress Icon */
.wordpress-icon {
    background: rgba(33, 117, 155, 0.1);
}

.wordpress-logo {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordpress-logo .w {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #21749b;
    position: relative;
    z-index: 2;
}

.wp-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #21749b;
    border-radius: 50%;
}

/* E-commerce Cart Icon */
.ecommerce-icon {
    background: rgba(75, 192, 192, 0.1);
}

.ecommerce-cart {
    position: relative;
    width: 50px;
    height: 40px;
}

.cart-base {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 25px;
    background: #4bc0c0;
    border-radius: 12px 12px 0 0;
}

.cart-handle {
    position: absolute;
    top: 5px;
    right: 0;
    width: 15px;
    height: 10px;
    background: #4bc0c0;
    border-radius: 0 10px 0 0;
}

.cart-handle::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    width: 10px;
    height: 8px;
    background: #4bc0c0;
    border-radius: 5px 0 0 0;
}

.cart-item {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 10px;
    height: 12px;
    background: #4bc0c0;
    transform: rotate(30deg);
    border-radius: 2px;
}

/* Startup Rocket Icon */
.startup-icon {
    background: rgba(255, 159, 67, 0.1);
}

.rocket {
    position: relative;
    width: 40px;
    height: 60px;
    margin-top: 10px;
}

.rocket-body {
    position: absolute;
    width: 30px;
    height: 50px;
    background: #ff9f43;
    border-radius: 50% 50% 5px 5px;
    left: 5px;
    top: 0;
}

.window {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2d3436;
    border-radius: 50%;
    top: 15px;
    left: 10px;
}

.fin {
    position: absolute;
    width: 5px;
    height: 25px;
    background: #ff9f43;
    bottom: 15px;
}

.left-fin {
    left: 0;
    transform: rotate(30deg);
    transform-origin: bottom center;
}

.right-fin {
    right: 0;
    transform: rotate(-30deg);
    transform-origin: bottom center;
}

.flame {
    position: absolute;
    width: 8px;
    height: 15px;
    background: #ff7f50;
    bottom: -15px;
    left: 16px;
    border-radius: 0 0 5px 5px;
    animation: flame 0.5s infinite alternate;
}

@keyframes flame {
    0% { height: 15px; opacity: 1; }
    100% { height: 20px; opacity: 0.7; }
}

/* Web Development Package Icon */
.code-snippet {
    background: #1e1e2e;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    line-height: 1.4;
    text-align: left;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.code-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag {
    color: #569CD6;
}

.attr {
    color: #9CDCFE;
}

.value {
    color: #CE9178;
}

/* Branding Package Icon */
.brand-elements {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.color-palette {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.typography-sample {
    text-align: center;
}

.font-display {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.font-name {
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Combined Package Icon */
.combined-elements {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 8px;
}

.code-preview {
    background: #1e1e2e;
    border-radius: 4px;
    padding: 4px 6px;
    width: 100%;
    margin-bottom: 8px;
}

.design-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-preview {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-shape {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 4px;
}

.logo-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
}

.package-card:hover .package-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.package-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-features {
    flex: 1;
    margin-bottom: 30px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    color: #cbd5e1;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 0.8rem;
}

.package-footer {
    text-align: center;
    margin-top: auto;
}

.package-footer .cta-button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.packages-note {
    text-align: center;
    margin-top: 50px;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
}

.packages-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.packages-note a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .package-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(20, 20, 30, 0.9));
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
}

.testimonials .section-header h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.testimonials .section-header p {
    color: #a0aec0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(108, 99, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.testimonial-card:hover::before {
    transform: rotate(60deg);
    opacity: 0.7;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.1);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    opacity: 0.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quote-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.testimonial-text {
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 20px 0 25px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    flex-grow: 1;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    position: absolute;
    color: var(--primary-color);
    font-size: 4rem;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.2;
}

.testimonial-text::before {
    top: -20px;
    left: -15px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials .section-header p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.about .policy-section,
.about .terms-section {
    color: #b8b8d1;
}

.about .policy-section h2,
.about .terms-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about .policy-section h2:first-child,
.about .terms-section h2:first-child {
    margin-top: 0;
}

.about .policy-section p,
.about .terms-section p {
    color: #b8b8d1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about .policy-section ul,
.about .terms-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.about .policy-section li,
.about .terms-section li {
    color: #b8b8d1;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.about .policy-section a,
.about .terms-section a {
    color: #8a85ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.about .policy-section a:hover,
.about .terms-section a:hover {
    color: #6c63ff;
    text-decoration: underline;
}

/* Adjust card content spacing */
.about .card-content {
    padding: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about .policy-section h2,
    .about .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .about .card-content {
        padding: 1.5rem;
    }
}
/* Portfolio Categories */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    background: rgba(108, 99, 255, 0.1);
    color: #b8b8d1;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.category-btn:hover,
.category-btn.active {
    background: #6c63ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

/* Responsive adjustments for portfolio categories */
@media (max-width: 768px) {
    .portfolio-categories {
        gap: 0.75rem;
    }
    
    .category-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}
