/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: hidden;
    font-size: 16px;
    background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 25%, #0f172a 50%, #1a1f36 75%, #0a0f1c 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: rgba(10, 15, 28, 0.98) !important;
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.navbar.scrolled {
    background: rgba(10, 15, 28, 0.98) !important;
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c084fc;
    text-decoration: none;
}

.logo-link {
    text-decoration: none;
    color: #c084fc;
}

.logo-svg {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.4));
}

.logo-svg:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(138, 43, 226, 0.6));
}

.footer-logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.4));
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(138, 43, 226, 0.6));
}

.logo-modern:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 1px, transparent 1px),
                radial-gradient(circle at 40% 70%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: particleShine 3s ease-in-out infinite;
}

@keyframes particleShine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-right: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
}

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

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

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

.dark-mode-toggle {
    background: none;
    border: 2px solid #2563eb;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dark-mode-toggle:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.bar {
    width: 25px;
    height: 3px;
    background: #c084fc;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    padding: 120px 0 80px;
    overflow: hidden;
    color: white;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.6;
    color: rgba(203, 213, 225, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-tag {
    background: rgba(192, 132, 252, 0.15);
    backdrop-filter: blur(10px);
    color: #c084fc;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(192, 132, 252, 0.3);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(192, 132, 252, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 132, 252, 0.2);
}

.hero-cta {
    margin-top: 40px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Value Proposition Section */
.value-prop {
    padding: 80px 0;
    background: #1e293b;
    text-align: center;
}

.value-prop-content {
    max-width: 800px;
    margin: 0 auto;
}

.value-prop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c084fc;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-prop-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #c084fc, #a855f7, #ec4899);
    color: #0a0f1c;
    transform: perspective(1000px) rotateX(0deg);
    font-weight: 700;
    text-shadow: none;
}

.btn-primary:hover {
    transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.4);
    background: linear-gradient(135deg, #a855f7, #9333ea, #ec4899);
}

.btn-outline {
    background: transparent;
    color: #c084fc;
    border: 2px solid #c084fc;
    padding: 14px 28px;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #c084fc, #ec4899);
    color: #0a0f1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 132, 252, 0.3);
    font-weight: 700;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Digital Services Section */
.digital-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #0a0f1c 60%, #1a1f36 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c084fc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-detailed-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(192, 132, 252, 0.1);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(192, 132, 252, 0.2);
    border-color: rgba(192, 132, 252, 0.3);
}

.service-detailed-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c084fc, #a855f7, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0f1c;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(192, 132, 252, 0.3);
}

.service-detailed-content {
    flex: 1;
}

.service-detailed-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #c084fc;
}

.service-detailed-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-detailed-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detailed-content li {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-detailed-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c084fc;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Our Work Section */
.our-work {
    padding: 100px 0;
    background: #0f172a;
    position: relative;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.work-card {
    background: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 132, 252, 0.1);
    position: relative;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(192, 132, 252, 0.25);
    border-color: rgba(192, 132, 252, 0.4);
}

.work-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .project-screenshot {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.work-overlay-content {
    text-align: center;
    color: #c084fc;
}

.work-overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.work-overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.work-content {
    padding: 30px;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.work-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c084fc;
    margin: 0;
}

.work-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.work-tag {
    background: rgba(192, 132, 252, 0.15);
    color: #c084fc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(192, 132, 252, 0.3);
}

.work-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.work-tech {
    margin-bottom: 25px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-item {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.work-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.work-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.work-btn i {
    font-size: 0.8rem;
}

.work-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: #1e293b;
    border-radius: 20px;
    border: 1px solid rgba(192, 132, 252, 0.1);
}

.work-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #c084fc;
    margin-bottom: 15px;
}

.work-cta p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: #1e293b;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(192, 132, 252, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: 1px solid rgba(192, 132, 252, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #c084fc;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close {
    color: #94a3b8;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.close:hover {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 132, 252, 0.2);
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.02);
}

.modal-project-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-project-info h4 {
    color: #c084fc;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    border-bottom: 2px solid rgba(192, 132, 252, 0.3);
    padding-bottom: 10px;
}

.modal-project-info p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.modal-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-tech-item {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.modal-tech-item:hover {
    background: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.modal-visit-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-visit-btn i {
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #1e293b;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c084fc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c084fc;
}

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

.about-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-image:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f36 40%, #1e293b 70%, #0f172a 100%);
    position: relative;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #c084fc;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #1e293b;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 132, 252, 0.1);
}

.contact-item i {
    width: 20px;
    color: #c084fc;
    font-size: 1.25rem;
}

.contact-form {
    background: #1e293b;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(192, 132, 252, 0.1);
    width: 100%;
    max-width: 700px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #c084fc;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(192, 132, 252, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c084fc;
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
    max-width: 100%;
}

/* Services Page */
.services-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 25%, #0f172a 50%, #1a1f36 75%, #0a0f1c 100%);
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

.service-detail-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.service-detail-card {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 132, 252, 0.1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(192, 132, 252, 0.2);
    border-color: rgba(192, 132, 252, 0.3);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 40px;
    align-items: center;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c084fc, #a855f7, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0f1c;
    box-shadow: 0 4px 12px rgba(192, 132, 252, 0.3);
}

.service-detail-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #c084fc;
}

.service-detail-content p {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content li {
    color: #94a3b8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c084fc;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.logo-3d-small {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #5eead4, #14b8a6);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(94, 234, 212, 0.3);
}

.logo-3d-small::before {
    content: 'S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0f1c;
    font-weight: bold;
    font-size: 16px;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: white;
}

.footer-contact i {
    width: 16px;
    color: #60a5fa;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-svg {
        height: 36px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(192, 132, 252, 0.2);
        padding: 30px 0;
        border-bottom: 1px solid rgba(147, 51, 234, 0.3);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        display: block;
        color: #ffffff;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .hero-services-list {
        gap: 12px;
        margin-bottom: 35px;
    }

    .service-tag {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .value-prop {
        padding: 60px 0;
    }

    .value-prop-title {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }

    .value-prop-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .digital-services {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.1rem;
        margin-bottom: 16px;
    }

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

    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .service-detailed-card {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-detailed-icon {
        align-self: center;
    }

    .about {
        padding: 70px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.1rem;
    }

    .about-text p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .our-work {
        padding: 70px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .work-card {
        border-radius: 16px;
    }

    .work-image {
        height: 250px;
    }

    .work-content {
        padding: 25px;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .work-header h3 {
        font-size: 1.3rem;
    }

    .work-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .work-cta {
        margin-top: 60px;
        padding: 40px 25px;
    }

    .work-cta h3 {
        font-size: 1.7rem;
    }

    .work-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-content {
        display: flex;
        justify-content: center;
        padding: 0 15px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }

    .footer {
        padding: 50px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-img {
        height: 36px;
    }

    /* Modal responsive styles for tablet */
    .modal-content {
        max-width: 95%;
        margin: 5% auto;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
        height: 65px;
    }

    .logo-svg {
        height: 32px;
    }

    .nav-menu {
        top: 65px;
        padding: 25px 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }

    .hero {
        padding: 85px 0 50px;
        min-height: 75vh;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .service-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .value-prop {
        padding: 50px 0;
    }

    .value-prop-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .value-prop-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .digital-services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-detailed-card {
        padding: 25px 20px;
    }

    .service-detailed-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .service-detailed-content h3 {
        font-size: 1.3rem;
    }

    .our-work {
        padding: 60px 0;
    }

    .work-grid {
        margin-top: 30px;
    }

    .work-image {
        height: 200px;
    }

    .work-content {
        padding: 20px;
    }

    .work-header h3 {
        font-size: 1.2rem;
    }

    .work-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .tech-item {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .work-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .work-cta {
        margin-top: 50px;
        padding: 35px 20px;
    }

    .work-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .work-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.9rem;
    }

    .btn {
        padding: 11px 22px;
        font-size: 0.9rem;
    }

    .footer-logo-img {
        height: 32px;
    }

    /* Modal responsive styles for mobile */
    .modal-content {
        max-width: 95%;
        margin: 5% auto;
        max-height: 85%;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        max-height: 60vh;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-project-info h4 {
        font-size: 1.1rem;
    }

    .modal-project-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .modal-tech-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .modal-visit-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .close {
        font-size: 1.5rem;
    }
}

/* Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.1s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #c084fc;
    border-radius: 5px;
    border: 1px solid rgba(192, 132, 252, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
    box-shadow: 0 2px 8px rgba(192, 132, 252, 0.4);
}

/* Dark Mode Styles */
body.dark-mode {
    background: #0f172a;
    color: #e2e8f0;
}

.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-mode .nav-link {
    color: #e2e8f0 !important;
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
    color: #60a5fa !important;
}

.dark-mode .nav-link::after {
    background: #60a5fa !important;
}

.dark-mode .nav-logo,
.dark-mode .nav-logo span,
.dark-mode .logo-link,
.dark-mode .logo-link span {
    color: #60a5fa !important;
}

.dark-mode .dark-mode-toggle {
    border-color: #60a5fa !important;
    color: #60a5fa !important;
}

.dark-mode .dark-mode-toggle:hover {
    background: #60a5fa !important;
    color: #0f172a !important;
}

.dark-mode .bar {
    background-color: #e2e8f0 !important;
}

.dark-mode .services-preview {
    background: #1e293b;
}

.dark-mode .section-title {
    color: #f1f5f9;
}

.dark-mode .service-card {
    background: #334155;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .service-card h3 {
    color: #f1f5f9;
}

.dark-mode .service-card p {
    color: #cbd5e1;
}

.dark-mode .about {
    background: #0f172a;
}

.dark-mode .about-text h2 {
    color: #f1f5f9;
}

.dark-mode .about-text p {
    color: #cbd5e1;
}

.dark-mode .stat-number {
    color: #60a5fa;
}

.dark-mode .stat-label {
    color: #cbd5e1;
}

.dark-mode .contact {
    background: #1e293b;
}

.dark-mode .contact-info h3 {
    color: #f1f5f9;
}

.dark-mode .contact-item {
    background: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .contact-item i {
    color: #60a5fa;
}

.dark-mode .contact-item span {
    color: #e2e8f0;
}

.dark-mode .contact-form {
    background: #334155;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode .contact-form h3 {
    color: #f1f5f9;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: #475569;
    border-color: #64748b;
    color: #e2e8f0;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.dark-mode .form-group input::placeholder,
.dark-mode .form-group textarea::placeholder {
    color: #94a3b8;
}

.dark-mode .services-page {
    background: #1e293b;
}

.dark-mode .service-detail-card {
    background: #334155;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dark-mode .service-detail-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .service-detail-content h3 {
    color: #f1f5f9;
}

.dark-mode .service-detail-content p,
.dark-mode .service-detail-content li {
    color: #cbd5e1;
}

.dark-mode .service-detail-content li::before {
    color: #60a5fa;
}

.dark-mode .footer {
    background: #0c1420;
    border-top: 1px solid #334155;
}

.dark-mode .footer-bottom {
    border-top: 1px solid #475569;
}

.dark-mode .nav-menu {
    background: rgba(10, 15, 28, 0.98) !important;
    backdrop-filter: blur(30px) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

.dark-mode .nav-container {
    background: transparent !important;
}

.dark-mode .logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    text-decoration: none !important;
}

.dark-mode .logo-link span {
    color: #60a5fa !important;
}

/* Dark mode scrollbar */
.dark-mode ::-webkit-scrollbar-track {
    background: #1e293b;
}

.dark-mode ::-webkit-scrollbar-thumb {
    background: #60a5fa;
}

.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}
