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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: hidden;
    font-size: 16px;
    background: #0f172a;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="2"/><feColorMatrix type="saturate" values="0.3"/></filter><rect width="100" height="100" fill="%23000000" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

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

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(2, 132, 199, 0.2);
}

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

.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 24px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    position: relative;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0284c7;
    text-decoration: none;
    margin-left: 10px;
    position: absolute;
    left: 0;
}

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

.logo-svg {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: none;
}

.logo-svg:hover {
    transform: scale(1.08);
    filter: none;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: none;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: none;
}

.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-left: auto;
    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: #0284c7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0284c7, #0369a1, #06b6d4);
    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: #0284c7;
    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);
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 30px;
    animation: checkPulse 2s ease-in-out;
}

@keyframes checkPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #0284c7;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}

.thank-you-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(2, 132, 199, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.detail-item i {
    color: #0284c7;
    font-size: 1.2rem;
    width: 20px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 200px;
    }
    
    .thank-you-details {
        padding: 20px;
    }
    
    .detail-item {
        font-size: 1rem;
    }
}

/* Image Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 95vw;
    height: 95vh;
    background: #1e293b;
    border-radius: 16px;
    border: 1px solid rgba(2, 132, 199, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(2, 132, 199, 0.1);
    border-bottom: 1px solid rgba(2, 132, 199, 0.2);
}

.lightbox-header h3 {
    color: #0284c7;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.lightbox-close {
    color: #e2e8f0;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1);
}

.lightbox-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.zoom-btn {
    background: rgba(2, 132, 199, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.3);
    color: #0284c7;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.zoom-btn:hover {
    background: rgba(2, 132, 199, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3);
}

.lightbox-image-container {
    flex: 1;
    position: relative;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0f172a;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-image:active {
    cursor: grabbing;
}

.zoom-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #0284c7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(2, 132, 199, 0.3);
}

.project-screenshot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(2, 132, 199, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 98vw;
        height: 98vh;
    }
    
    .lightbox-header {
        padding: 15px 20px;
    }
    
    .lightbox-header h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-controls {
        gap: 8px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .zoom-info {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #0f172a;
    padding: 120px 0 80px;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(2, 132, 199, 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(2, 132, 199, 0.15);
    backdrop-filter: blur(10px);
    color: #0284c7;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(2, 132, 199, 0.3);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(2, 132, 199, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 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: #0284c7;
    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, #0284c7, #0369a1, #06b6d4);
    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(2, 132, 199, 0.4);
    background: linear-gradient(135deg, #0369a1, #0271b6, #06b6d4);
}

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

.btn-outline:hover {
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    color: #0a0f1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 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: #0284c7;
    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(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-detailed-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(2, 132, 199, 0.1);
}

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

.service-detailed-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0284c7, #0369a1, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2);
}

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

.service-detailed-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0284c7;
}

.service-detailed-content p {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.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: #0284c7;
    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(2, 132, 199, 0.1);
    position: relative;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(2, 132, 199, 0.25);
    border-color: rgba(2, 132, 199, 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: #0284c7;
}

.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: #0284c7;
    margin: 0;
}

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

.work-tag {
    background: rgba(2, 132, 199, 0.15);
    color: #0284c7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(2, 132, 199, 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(2, 132, 199, 0.1);
}

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

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

/* Testimonials Section */
.testimonials-section {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    border-radius: 20px;
    border: 1px solid rgba(2, 132, 199, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(2, 132, 199, 0.1), transparent);
    transform: rotate(-45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.25);
    border-color: rgba(2, 132, 199, 0.4);
}

.testimonial-card:hover::before {
    transform: rotate(-45deg) translate(0%, 0%);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--star-delay) * 0.2s);
}

.testimonial-stars i.far {
    color: #64748b;
    opacity: 0.6;
}

.testimonial-stars i:nth-child(1) { --star-delay: 0; }
.testimonial-stars i:nth-child(2) { --star-delay: 1; }
.testimonial-stars i:nth-child(3) { --star-delay: 2; }
.testimonial-stars i:nth-child(4) { --star-delay: 3; }
.testimonial-stars i:nth-child(5) { --star-delay: 4; }

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

.testimonial-text {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 3rem;
    color: rgba(2, 132, 199, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #0284c7;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.author-title {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Follow Us Section */
.follow-us {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(2, 132, 199, 0.1);
    position: relative;
}

.follow-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.follow-us-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.follow-us-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.follow-us-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077b5, #005885, #0077b5);
    color: white;
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, #005885, #0077b5, #005885);
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #f09433 100%);
    box-shadow: 0 15px 40px rgba(240, 148, 51, 0.4);
}

.social-btn i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* 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(2, 132, 199, 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(2, 132, 199, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #0284c7;
    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: #0284c7;
    background: rgba(2, 132, 199, 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(2, 132, 199, 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: #0284c7;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    border-bottom: 2px solid rgba(2, 132, 199, 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 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0284c7;
    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(2, 1fr);
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

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

.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: #0284c7;
}

.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(2, 132, 199, 0.1);
}

.contact-item i {
    width: 20px;
    color: #0284c7;
    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(2, 132, 199, 0.1);
    width: 100%;
    max-width: 700px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(2, 132, 199, 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: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 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(2, 132, 199, 0.1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.2);
    border-color: rgba(2, 132, 199, 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, #0284c7, #0369a1, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0f1c;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

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

.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: #0284c7;
    font-weight: bold;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.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;
    align-items: center;
}

.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 Follow Us Section */
.footer-follow-us {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #334155;
    margin-top: 20px;
}

.footer-follow-us h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0284c7;
    margin-bottom: 20px;
}

.footer-social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.footer-social-btn:hover::before {
    left: 100%;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
}

.footer-social-btn.linkedin-btn {
    background: #0077b5;
    color: white;
}

.footer-social-btn.linkedin-btn:hover {
    background: #005885;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.footer-social-btn.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.footer-social-btn.instagram-btn:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #f09433 100%);
    box-shadow: 0 5px 15px rgba(240, 148, 51, 0.3);
}

.footer-social-btn i {
    font-size: 1.1rem;
}

.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;
        position: relative;
    }

    .nav-logo {
        position: static;
        margin-left: 0;
        z-index: 1002;
    }

    .logo-svg {
        height: 36px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .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(2, 132, 199, 0.2);
        padding: 30px 0;
        border-bottom: 1px solid rgba(3, 105, 161, 0.3);
        gap: 0;
        z-index: 1001;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .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 {
        text-align: center;
        padding: 0 15px;
    }

    .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;
        padding: 0 10px;
    }

    .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(2, 1fr);
        gap: 25px;
        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-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section:first-child,
    .footer-section:nth-child(2),
    .footer-section:last-child {
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section:first-child,
    .footer-section:nth-child(2),
    .footer-section:last-child {
        align-items: center;
        text-align: center;
    }

    .footer-logo-img {
        height: 36px;
    }
    
    /* Footer Follow Us responsive */
    .footer-follow-us {
        padding: 25px 0;
    }
    
    .footer-follow-us h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-social-buttons {
        gap: 12px;
    }
    
    .footer-social-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* 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;
    }
    
    /* Testimonials responsive */
    .testimonials-section {
        margin-top: 60px;
        margin-bottom: 60px;
        padding: 40px 25px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    /* Follow Us responsive */
    .follow-us {
        padding: 50px 0;
    }
    
    .follow-us-content h3 {
        font-size: 1.7rem;
    }
    
    .follow-us-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .social-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 180px;
    }
}

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

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

    .nav-logo {
        position: static;
        margin-left: 0;
        z-index: 1002;
    }

    .logo-svg {
        height: 32px;
    }

    .hamburger {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .nav-menu {
        top: 65px;
        padding: 25px 0;
        height: calc(100vh - 65px);
        z-index: 1001;
    }

    .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;
        margin: 0 10px;
        border-radius: 12px;
    }

    .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;
    }
    
    /* Footer Follow Us mobile responsive */
    .footer-follow-us {
        padding: 20px 0;
    }
    
    .footer-follow-us h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-social-buttons {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 140px;
    }

    /* 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;
    }
    
    /* Testimonials mobile responsive */
    .testimonials-section {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 30px 20px;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    /* Follow Us mobile responsive */
    .follow-us {
        padding: 40px 0;
    }
    
    .follow-us-content h3 {
        font-size: 1.5rem;
    }
    
    .follow-us-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .social-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        min-width: 160px;
        gap: 8px;
    }
    
    .social-btn i {
        font-size: 1.2rem;
    }
}

/* 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: #0284c7;
    border-radius: 5px;
    border: 1px solid rgba(2, 132, 199, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #0369a1;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 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;
}
