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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: #00B7B2;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00B7B2;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #00B7B2;
}

.quote-btn {
    background: #00B7B2;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #009a96;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Unique Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d8d8d8 100%);
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 183, 178, 0.1), rgba(0, 183, 178, 0.05));
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 60%;
    animation-delay: 8s;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 183, 178, 0.3) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 183, 178, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 183, 178, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 12s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes drawLine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 183, 178, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 183, 178, 0.5);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 80vh;
}

.hero-left {
    flex: 1;
    max-width: 50%;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    position: relative;
}

/* Left Side */
.hero-left {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 183, 178, 0.1);
    border: 1px solid rgba(0, 183, 178, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    color: #00B7B2;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 30px;
}

.store-title {
    color: #2b2b2b;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.store-desc {
    color: #555;
    font-size: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 35px;
    font-weight: 400;
}

.title-line {
    display: block;
    margin-bottom: 15px;
}

.highlight {
    font-size: 18px;
    color: #888;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #4a9ca8, #6bb6c1, #4a9ca8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-right: 15px;
    animation: gradientShift 3s ease-in-out infinite;
}

.typing-text {
    font-size: 32px;
    color: #555;
    font-weight: 500;
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #00B7B2;
}

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 18px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.highlight-text {
    color: #4a9ca8;
    font-weight: 500;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.action-btn {
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00B7B2, #009a96);
    color: white;
    padding: 18px 35px;
    box-shadow: 0 10px 30px rgba(0, 183, 178, 0.3);
}

.action-btn.secondary {
    background: transparent;
    color: #00B7B2;
    border: 2px solid #00B7B2;
    padding: 16px 33px;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

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

.action-btn:hover .btn-glow {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-3px);
}

.action-btn.primary:hover {
    box-shadow: 0 15px 40px rgba(0, 183, 178, 0.4);
}

.action-btn.secondary:hover {
    background: #00B7B2;
    color: white;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 183, 178, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 183, 178, 0.1);
    border-color: rgba(0, 183, 178, 0.4);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 16px;
    font-weight: 800;
    color: #00B7B2;
    margin-bottom: 1px;
    line-height: 1;
}

.stat-label {
    font-size: 8px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Right Side - 3D Visual */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3D Code Blocks */
.code-block {
    position: absolute;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.6s ease;
    cursor: pointer;
}

.code-block:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 183, 178, 0.2);
}

.block-1 {
    width: 320px;
    height: 180px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotateY(-10deg);
    z-index: 3;
}

.block-2 {
    width: 260px;
    height: 140px;
    top: 80px;
    left: 10px;
    transform: rotateY(15deg) rotateX(5deg);
    z-index: 2;
}

.block-3 {
    width: 280px;
    height: 160px;
    top: 160px;
    right: 10px;
    transform: rotateY(-20deg) rotateX(-3deg);
    z-index: 1;
}

.block-header {
    height: 35px;
    background: linear-gradient(135deg, #e8e8e8, #f0f0f0);
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #d0d0d0;
}

.block-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.block-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.block-content {
    padding: 20px;
    background: #f8f9fa;
    height: calc(100% - 35px);
    font-family: 'Courier New', monospace;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.4;
}

.line-num {
    color: #999;
    width: 25px;
    text-align: right;
    margin-right: 15px;
    font-size: 10px;
    user-select: none;
}

.code {
    color: #333;
    flex: 1;
}

.keyword {
    color: #4a9ca8;
    font-weight: 600;
}

.variable {
    color: #6bb6c1;
    font-weight: 600;
}

.property {
    color: #7a9ca8;
}

.string {
    color: #8a6b47;
}

.boolean {
    color: #8a8a47;
}

.function {
    color: #8a8a47;
}

.class {
    color: #6bb6c1;
    font-weight: 600;
}

.method {
    color: #8a8a47;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 183, 178, 0.3);
    animation: floatElement 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 183, 178, 0.4);
}

.element-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 15%;
    right: 25%;
    animation-delay: 4s;
}

.element-4 {
    top: 30%;
    left: 15%;
    animation-delay: 1s;
}

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

.desktop-device {
    width: 320px;
    height: 200px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.laptop-device {
    width: 240px;
    height: 160px;
    top: 120px;
    left: 10px;
    z-index: 3;
}

.tablet-device {
    width: 140px;
    height: 180px;
    top: 60px;
    right: 10px;
    z-index: 2;
}

.mobile-device {
    width: 80px;
    height: 140px;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Desktop Monitor */
.monitor-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid #333;
}

.monitor-frame::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    border: 2px solid #333;
}

.monitor-frame::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: #2c2c2c;
    border-radius: 4px;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px #e0e0e0;
    border: 1px solid #ccc;
}

.browser-header {
    height: 25px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-controls {
    display: flex;
    gap: 4px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.browser-title {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

/* Code Editor Styles */
.code-editor {
    padding: 15px;
    background: #1e1e1e;
    height: calc(100% - 25px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.4;
}

.line-number {
    color: #666;
    width: 20px;
    text-align: right;
    margin-right: 10px;
    font-size: 10px;
    user-select: none;
}

.code-text {
    color: #d4d4d4;
    flex: 1;
}

.keyword {
    color: #4a9ca8;
    font-weight: 600;
}

.variable {
    color: #6bb6c1;
    font-weight: 600;
}

.property {
    color: #7a9ca8;
}

.string {
    color: #8a6b47;
}

.boolean {
    color: #8a8a47;
}

.function {
    color: #8a8a47;
}

.class {
    color: #6bb6c1;
    font-weight: 600;
}

.method {
    color: #8a8a47;
}

/* Laptop */
.laptop-frame {
    width: 100%;
    height: 100%;
    background: #c0c0c0;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid #999;
}

.laptop-frame::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #c0c0c0;
    border-radius: 0 0 3px 3px;
    border: 1px solid #999;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #a0a0a0;
    border-radius: 2px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #d0d0d0;
    border: 1px solid #bbb;
}

.screen-header {
    height: 20px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid #e0e0e0;
}

.header-dots {
    display: flex;
    gap: 3px;
}

.screen-body {
    padding: 10px;
    background: #1e1e1e;
    height: calc(100% - 20px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

/* Tablet */
.tablet-frame {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #ccc;
    position: relative;
}

.tablet-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #d0d0d0;
    border-radius: 2px;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #e0e0e0;
    border: 1px solid #bbb;
}

.tablet-header {
    height: 15px;
    background: #00B7B2;
    border-radius: 6px 6px 0 0;
}

.tablet-content {
    padding: 8px;
    background: #1e1e1e;
    height: calc(100% - 15px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

/* Mobile Phone */
.phone-frame {
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    border-radius: 20px;
    padding: 3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #444;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #ddd;
    border: 1px solid #aaa;
}

.phone-header {
    height: 12px;
    background: #00B7B2;
    border-radius: 10px 10px 0 0;
}

.phone-content {
    padding: 6px;
    background: #1e1e1e;
    height: calc(100% - 12px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

/* Device Animations */
.desktop-device {
    animation: floatDesktop 6s ease-in-out infinite;
}

.laptop-device {
    animation: floatLaptop 6s ease-in-out infinite 1s;
}

.tablet-device {
    animation: floatTablet 6s ease-in-out infinite 2s;
}

.mobile-device {
    animation: floatMobile 6s ease-in-out infinite 3s;
}

@keyframes floatDesktop {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

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

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

@keyframes floatMobile {
    0%, 100% { transform: translateX(-50%) translateY(0px) rotate(-3deg); }
    50% { transform: translateX(-50%) translateY(-5px) rotate(-1deg); }
}

/* Modern Software Visual */
.modern-software-visual {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 183, 178, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 183, 178, 0.3);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    box-shadow: 0 12px 25px rgba(0, 183, 178, 0.4);
    transform: rotate(5deg);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
}


/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 183, 178, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::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.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 183, 178, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(0, 183, 178, 0.3);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #00B7B2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}


/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    padding-top: 0;
}

.services-preview .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-preview .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.services-preview .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.services-preview .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 183, 178, 0.03), rgba(0, 183, 178, 0.01));
    animation: floatShape 20s ease-in-out infinite, gentlePulse 4s ease-in-out infinite;
}

.services-preview .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.services-preview .shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.services-preview .shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 10s;
}

.services-preview .shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 15s;
}

.services-preview .shape-5 {
    width: 120px;
    height: 120px;
    top: 70%;
    left: 60%;
    animation-delay: 8s;
}

.services-preview .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 15s ease-in-out infinite;
}

.services-preview .orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 183, 178, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.services-preview .orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 183, 178, 0.03) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 7s;
}

.services-preview .orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 183, 178, 0.02) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 12s;
}

.services-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out forwards;
    padding-top: 80px;
}

.services-content h2 {
    text-align: center;
    font-size: 32px;
    color: #555;
    margin-bottom: 50px;
    font-weight: 500;
    animation: slideInDown 1s ease-out forwards;
    animation-delay: 0.1s;
}

.highlight {
    color: #4a9ca8;
    font-weight: 600;
}

.services-path {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.path-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    border-radius: 50%;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 183, 178, 0.3);
    backdrop-filter: blur(10px);
    animation: bounceIn 0.8s ease-out forwards;
}

.path-item:nth-child(1) { animation-delay: 0.2s; }
.path-item:nth-child(3) { animation-delay: 0.4s; }
.path-item:nth-child(5) { animation-delay: 0.6s; }
.path-item:nth-child(7) { animation-delay: 0.8s; }

.path-item:hover {
    background: linear-gradient(135deg, #009a96, #00B7B2);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 183, 178, 0.4);
    animation: pulse 2s infinite;
}

.path-line {
    width: 60px;
    height: 2px;
    background: rgba(0, 183, 178, 0.3);
    position: relative;
    animation: drawLine 1s ease-out forwards;
    animation-delay: 0.5s;
}

.path-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 183, 178, 0.3);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.desk-setup {
    position: relative;
}

.desk-setup i {
    position: absolute;
    font-size: 16px;
}

.desk-setup i:nth-child(1) { top: 10px; left: 10px; }
.desk-setup i:nth-child(2) { top: 20px; right: 10px; }
.desk-setup i:nth-child(3) { bottom: 10px; left: 20px; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    border-radius: 2px;
}

.section-header p {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section - New Design */
.about {
    padding: 80px 0;
    background: white;
    position: relative;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-visual {
    position: relative;
}

.laptop-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.laptop {
    width: 400px;
    height: 250px;
    background: #c0c0c0;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.laptop::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #c0c0c0;
    border-radius: 0 0 4px 4px;
}

.laptop::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #a0a0a0;
    border-radius: 2px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.screen-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    padding: 20px;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #00B7B2;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center !important;
    position: relative;
    padding: 50px 25px !important;
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 183, 178, 0.1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #00B7B2;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 183, 178, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 183, 178, 0.15) !important;
    border-color: rgba(0, 183, 178, 0.3) !important;
    background: linear-gradient(135deg, #ffffff, #f0f8ff) !important;
}

.process-step:hover .step-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 183, 178, 0.2);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-color: rgba(0, 183, 178, 0.3);
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    font-weight: 400;
}

.step-arrow {
    display: none !important;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .service-card {
        min-height: 450px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .laptop {
        width: 300px;
        height: 200px;
        transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
    }
    
    .laptop-container {
        justify-content: center;
    }
    
    .about-text h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .title-line {
        margin: 0 auto 30px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-process {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 40px 20px;
    }
    
    .process-step h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .process-step p {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    
    .process-step {
        padding: 30px 15px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .process-step h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .process-step p {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 183, 178, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 183, 178, 0.02), rgba(0, 183, 178, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 183, 178, 0.15);
    border-color: rgba(0, 183, 178, 0.3);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.corner-decoration.top-left {
    top: 15px;
    left: 15px;
    border-top: 3px solid #00B7B2;
    border-left: 3px solid #00B7B2;
    border-top-left-radius: 8px;
}

.corner-decoration.top-right {
    top: 15px;
    right: 15px;
    border-top: 3px solid #00B7B2;
    border-right: 3px solid #00B7B2;
    border-top-right-radius: 8px;
}

.corner-decoration.bottom-left {
    bottom: 15px;
    left: 15px;
    border-bottom: 3px solid #00B7B2;
    border-left: 3px solid #00B7B2;
    border-bottom-left-radius: 8px;
}

.corner-decoration.bottom-right {
    bottom: 15px;
    right: 15px;
    border-bottom: 3px solid #00B7B2;
    border-right: 3px solid #00B7B2;
    border-bottom-right-radius: 8px;
}

.service-card:hover .corner-decoration {
    border-color: #009a96;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 183, 178, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 183, 178, 0.35);
}

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

.service-card h3 {
    font-size: 22px;
    color: #2b2b2b;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-card li i {
    color: #00B7B2;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.service-card:hover li {
    color: #333;
}

.service-card:hover li i {
    color: #009a96;
    transform: translateY(-50%) scale(1.1);
}


/* References Section */
.references {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.reference-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.reference-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Reference Image */
.reference-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

.reference-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.reference-icon i {
    color: #333;
    font-size: 18px;
}

.reference-logo h4 {
    font-size: 24px;
    color: white;
    font-weight: 700;
    text-align: right;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.reference-info {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 15px 15px;
}

.reference-info h5 {
    font-size: 20px;
    color: #2b2b2b;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reference-info p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 15px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 183, 178, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #00B7B2, #009a96);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category {
    background: white;
    color: #00B7B2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #00B7B2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B7B2;
}

.submit-btn {
    background: #00B7B2;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-btn:hover {
    background: #009a96;
    transform: translateY(-2px);
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    height: 300px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00B7B2;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #00B7B2;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00B7B2;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-section a:hover {
    color: #00B7B2;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: #00B7B2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background: #009a96;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span {
        margin-right: 10px;
        font-size: 12px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-left {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-right {
        max-width: 100%;
        height: 350px;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .typing-text {
        font-size: 24px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 10px;
    }
    
    .stat-item {
        padding: 8px 12px;
    }
    
    .stat-number {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 7px;
    }
    
    .block-1 {
        width: 280px;
        height: 160px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%) rotateY(-10deg);
    }
    
    .block-2 {
        width: 220px;
        height: 130px;
        top: 80px;
        left: 10px;
        transform: rotateY(15deg) rotateX(5deg);
    }
    
    .block-3 {
        width: 240px;
        height: 140px;
        top: 150px;
        right: 10px;
        transform: rotateY(-20deg) rotateX(-3deg);
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Code Editor Mobile */
    .code-editor {
        padding: 8px;
        font-size: 9px;
    }
    
    .code-line {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .line-number {
        width: 15px;
        margin-right: 6px;
        font-size: 8px;
    }
    
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .service-card {
        min-height: auto;
        padding: 35px 20px;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .reference-image {
        height: 180px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .services-path {
        flex-direction: column;
        gap: 15px;
    }
    
    .path-line {
        width: 2px;
        height: 20px;
    }
    
    /* Modern Software Visual Mobile */
    .tech-stack {
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }
    
    .tech-item {
        flex-direction: row;
        gap: 15px;
        text-align: left;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-main-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    
    .service-card,
    .reference-card,
    .blog-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.loading {
    animation: pulse 2s infinite;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00B7B2;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #009a96;
    transform: translateY(-2px);
}

/* Device Styles */
.devices-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    perspective: 1000px;
    width: 100%;
    min-height: 400px;
}

.device {
    position: absolute;
    transition: all 0.6s ease;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 5;
}

.device:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
}

/* Desktop Monitor */
.device.desktop {
    width: 350px;
    height: 220px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotateY(-5deg);
    z-index: 4;
    opacity: 1;
    visibility: visible;
}

.monitor-frame {
    width: 100%;
    height: 100%;
    background: #2c2c2c;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 3px solid #1a1a1a;
}

.monitor-frame::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    border: 2px solid #333;
}

.monitor-frame::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: #2c2c2c;
    border-radius: 4px;
}

.monitor-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px #e0e0e0;
    border: 1px solid #ccc;
}

.browser-header {
    height: 25px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-controls {
    display: flex;
    gap: 4px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.browser-title {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.screen-body {
    padding: 15px;
    background: #1e1e1e;
    height: calc(100% - 25px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

/* Laptop */
.device.laptop {
    width: 280px;
    height: 180px;
    top: 250px;
    left: 60%;
    transform: translateX(-50%) rotateY(8deg);
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

.laptop-frame {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 2px solid #d0d0d0;
}

.laptop-frame::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #c0c0c0;
    border-radius: 0 0 3px 3px;
    border: 1px solid #999;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #a0a0a0;
    border-radius: 2px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #d0d0d0;
    border: 1px solid #bbb;
}

.screen-header {
    height: 20px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid #e0e0e0;
}

.header-dots {
    display: flex;
    gap: 3px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

/* Tablet */
.device.tablet {
    width: 160px;
    height: 200px;
    top: 180px;
    right: 0px;
    z-index: 2;
    transform: rotateY(-15deg);
    opacity: 1;
    visibility: visible;
}

.tablet-frame {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #e0e0e0;
    position: relative;
}

.tablet-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: #d0d0d0;
    border-radius: 2px;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #e0e0e0;
    border: 1px solid #bbb;
}

.tablet-header {
    height: 15px;
    background: #00B7B2;
    border-radius: 6px 6px 0 0;
}

.tablet-content {
    padding: 8px;
    background: #1e1e1e;
    height: calc(100% - 15px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

/* Mobile Phone */
.device.mobile {
    width: 100px;
    height: 160px;
    top: 220px;
    left: 30px;
    transform: rotateY(15deg);
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid #333;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #ddd;
    border: 1px solid #aaa;
}

.phone-header {
    height: 12px;
    background: #00B7B2;
    border-radius: 10px 10px 0 0;
}

.phone-content {
    padding: 6px;
    background: #1e1e1e;
    height: calc(100% - 12px);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

/* Code Editor Styles */
.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    font-size: 11px;
    line-height: 1.4;
}

.line-number {
    color: #666;
    width: 20px;
    text-align: right;
    margin-right: 10px;
    font-size: 10px;
    user-select: none;
}

.code-text {
    color: #d4d4d4;
    flex: 1;
}

.keyword {
    color: #4a9ca8;
    font-weight: 600;
}

.variable {
    color: #6bb6c1;
    font-weight: 600;
}

.property {
    color: #7a9ca8;
}

.string {
    color: #8a6b47;
}

.boolean {
    color: #8a8a47;
}

.function {
    color: #8a8a47;
}

.class {
    color: #6bb6c1;
    font-weight: 600;
}

.method {
    color: #8a8a47;
}
