/* W2S Solutions Inspired Styles */

/* CSS Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --accent-color: #059669;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    --gradient-accent: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
    --gradient-light: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    --shadow-primary: 0 20px 40px rgba(37, 99, 235, 0.15);
    --shadow-secondary: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: white;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-light);
}

.modern-navbar {
    padding: 1rem 0;
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
}

/* Mobile Menu Overlay - Hidden on desktop by default */
.mobile-menu-overlay {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover .nav-indicator {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-medium);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

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

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* New Hero Design */
.inner-header-section {
    width: 100%;
    position: relative;
}

.inner-section-wrapper {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

@media (min-width: 1024px) {
    .inner-section-wrapper {
        padding-top: 8rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .inner-section-wrapper {
        padding-top: 12rem;
    }
}

@media (min-width: 1024px) {
    .inner-section-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.portfolio-hero-text {
    max-width: 80rem;
    z-index: 10;
    padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .portfolio-hero-text {
        padding-bottom: 5rem;
    }
}

@media (min-width: 1280px) {
    .portfolio-hero-text {
        padding-bottom: 6rem;
    }
}

.wgl-double_heading {
    margin-bottom: 0;
}

.pft__title-wrapper {
    margin-bottom: 0;
}

.pft__title {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .pft__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .pft__title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1280px) {
    .pft__title {
        font-size: 6rem;
    }
}

.txt-rotate {
    color: var(--primary-color);
    display: inline-block;
}

.type-blink {
    position: relative;
}

.type-blink-text {
    position: relative;
    visibility: hidden;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { visibility: visible; }
    51%, 100% { visibility: hidden; }
}

.header_desc {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 1rem;
    max-width: 32rem;
    color: white;
}

@media (min-width: 1024px) {
    .header_desc {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
}

@media (min-width: 1280px) {
    .header_desc {
        font-size: 1.5rem;
    }
}

/* Cool Contact Button */
.hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.cool-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
}

.cool-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.cool-contact-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cool-contact-btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-effect {
    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;
}

.cool-contact-btn:hover .btn-effect {
    left: 100%;
}

/* Button Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 3px 18px rgba(37, 99, 235, 0.5);
    }
    100% {
        box-shadow: 0 3px 12px rgba(37, 99, 235, 0.3);
    }
}

.cool-contact-btn {
    animation: pulse-glow 2s infinite;
}

.cool-contact-btn:hover {
    animation: none;
}

/* Services Cards Section */
.services-cards-section {
    padding: 80px 0;
    background: #16031F; /* Dark purple background matching iROID */
}

/* Removed conflicting general services-grid rule - using specific .services-section .services-grid instead */

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translate(20px, 20px) rotateY(-50deg);
}

.service-card.visible {
    opacity: 1;
    transform: none;
}

/* Card Layout - Different sizes like iROID */
.ui-design-card {
    grid-column: span 3;
    background: linear-gradient(45deg, #6c4485, #8469de);
}

.mobile-app-card {
    grid-column: span 3;
    background: transparent;
    position: relative;
}

.mobile-app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/mobile-bg.jpg') center/cover;
    z-index: 1;
}

.mobile-app-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(206, 91, 89, 0.6);
    z-index: 2;
}

.website-dev-card {
    grid-column: span 6;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    position: relative;
}

.website-dev-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: url('images/website-dev.png') center/contain no-repeat;
    z-index: 2;
    opacity: 0.8;
}

.ecommerce-card {
    grid-column: span 3;
    background: linear-gradient(45deg, #3a6734, #2f4720);
}

.cms-card {
    grid-column: span 6;
    background: linear-gradient(45deg, #2d2743, #413262);
}

.digital-marketing-card {
    grid-column: span 3;
    background: linear-gradient(45deg, #673449, #472031);
}

.iot-card {
    grid-column: span 6;
    background: linear-gradient(45deg, #345b67, #2f4056);
}

.erp-card {
    grid-column: span 3;
    background: linear-gradient(45deg, #674234, #5f3327);
}

.aem-card {
    grid-column: span 3;
    background: linear-gradient(45deg, #6c2341, #881c4b);
}

.support-card {
    grid-column: span 6;
    background: linear-gradient(45deg, #234c6c, #67562d);
}

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

.card-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Specific service icon for cards section (not services section) */
.services-cards-section .service-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 80px;
    height: 80px;
    z-index: 3;
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-text {
    margin-top: auto;
}

/* Specific service title for cards section */
.services-cards-section .service-title {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.service-description {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: white;
}

.explore-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Hover Effects */
.service-card:hover {
    opacity: 0.9 !important;
    transform: scale(1.015);
}

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

.service-card:hover .explore-link {
    transform: translateX(8px);
}

/* Animation Delays */
.service-card:nth-child(3n - 2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3n - 1) {
    transition-delay: 0.3s;
}

.service-card:nth-child(3n) {
    transition-delay: 0.5s;
}

/* Sapphire Solutions Inspired Styles */

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
}


.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
    position: relative;
}

/* Services Page Hero Section */
.services-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%), url('images/service.jpg') !important;
}

.hero-section .txt-rotate {
    animation: randomColors 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

@keyframes randomColors {
    0% { color: #fbbf24; } /* Golden Yellow */
    16.66% { color: #ef4444; } /* Red */
    33.33% { color: #10b981; } /* Emerald Green */
    50% { color: #3b82f6; } /* Blue */
    66.66% { color: #8b5cf6; } /* Purple */
    83.33% { color: #f59e0b; } /* Amber */
    100% { color: #fbbf24; } /* Back to Golden Yellow */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Services Section - Clean Grid Layout */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    border: 1px solid var(--border-light);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.services-section .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.services-section .service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.services-section .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.services-section .service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.services-section .service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.services-section .service-link:hover {
    color: var(--primary-dark);
}

/* Service Icon Colors */
.services-section .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626); /* Red for Web Development */
}

.services-section .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #10b981, #059669); /* Green for Mobile App Development */
}

.services-section .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); /* Purple for AI Solutions */
}

.services-section .service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb); /* Blue for Cloud Solutions */
}

.services-section .service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Orange for Cybersecurity */
}

.services-section .service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2); /* Cyan for Data Analytics */
}

.services-section .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-section .service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #6366f1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.step-content {
    flex: 1;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: #f8fafc;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.tech-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.tech-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    text-align: center;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.tech-tag::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;
}

.tech-tag:hover::before {
    left: 100%;
}

.tech-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Tech Logos Styling */
.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}

.tech-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tech-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-logo:hover img {
    transform: scale(1.1);
}

/* Fallback for missing images */
.tech-logo img:not([src]),
.tech-logo img[src=""],
.tech-logo img[src*="undefined"] {
    display: none;
}

/* CSS-based technology icons as fallback */
.tech-logo::before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Hide fallback when image loads */
.tech-logo img[src]:not([src=""]) + span ~ .tech-logo::before {
    display: none;
}

/* Technology-specific fallback icons */
.tech-logo:nth-child(1)::before { content: '\f1c0'; } /* React */
.tech-logo:nth-child(2)::before { content: '\f1c0'; } /* Angular */
.tech-logo:nth-child(3)::before { content: '\f1c0'; } /* Vue */
.tech-logo:nth-child(4)::before { content: '\f1c0'; } /* JavaScript */
.tech-logo:nth-child(5)::before { content: '\f1c0'; } /* TypeScript */
.tech-logo:nth-child(6)::before { content: '\f1c0'; } /* HTML5 */
.tech-logo:nth-child(7)::before { content: '\f1c0'; } /* CSS3 */
.tech-logo:nth-child(8)::before { content: '\f1c0'; } /* Sass */

.tech-logo span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Premium Services Section */
.premium-services-section {
    padding: 80px 0;
    background: white;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.premium-service-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
}

.premium-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.premium-service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.premium-service-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.premium-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 2rem;
}

.premium-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.premium-features li:last-child {
    border-bottom: none;
}

.premium-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.premium-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-choose-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Email Contact Section */
.email-contact-section {
    padding: 60px 0;
    background: #f8fafc;
}

.email-contact-wrapper {
    text-align: center;
}

.email-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.email-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.email-contact-btn i {
    font-size: 1.25rem;
}

.btn-effect {
    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;
}

.email-contact-btn:hover .btn-effect {
    left: 100%;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/contact.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.contact-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.flags-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.flag-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-5px);
}

.flag {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.flag:hover {
    transform: scale(1.1);
}

.flag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.flag:hover .flag-image {
    transform: scale(1.05);
}

.office-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.email-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.email-link i {
    font-size: 1.2rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

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

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

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #a0aec0;
    margin: 0;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ensure navbar is properly positioned */
    .modern-navbar {
        position: relative;
        z-index: 1002;
    }
    
    .nav-container {
        position: relative;
        z-index: 1002;
    }
    
    
    /* Show mobile menu overlay on mobile */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-content {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateY(0);
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-item {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 1.5rem 2rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: background-color 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-nav-link:hover {
        background-color: #f8f9fa;
    }
    
    .mobile-nav-link:active {
        background-color: #e9ecef;
    }
    
    /* Hide desktop nav-menu on mobile and show toggle */
    .nav-menu {
        display: none !important;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    /* Mobile-specific nav styling */
    .nav-list {
        flex-direction: column;
        padding: 2rem 0;
        margin: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
        display: block;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
        min-width: 44px;
        color: #333 !important;
        text-decoration: none !important;
        font-weight: 500;
        background: white;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
    }
    
    .nav-text {
        display: block;
        font-size: 1rem;
    }
}

    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: left;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .flags-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
/* Mobile Responsive for Services Section */
@media (max-width: 768px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .services-section .service-card {
        padding: 2rem;
    }
    
    .services-section .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto 1.5rem auto;
    }
    
    .services-section .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .services-section .service-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-section .service-card {
        padding: 1.5rem;
    }
    
    .services-section .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto 1.2rem auto;
    }
    
    .services-section .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .services-section .service-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

.our-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.our-services-section .service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.our-services-section .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.our-services-section .service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.our-services-section .service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.our-services-section .service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process We Follow Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.step-content {
    flex: 1;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technology We Work With Section */
.technology-section {
    padding: 80px 0;
    background: #f8fafc;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tech-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Our Premium Services Section */
.premium-services-section {
    padding: 80px 0;
    background: white;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.premium-service-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6366f1 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.premium-service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.premium-service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.premium-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.premium-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.premium-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.premium-features li:last-child {
    border-bottom: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: left;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .step-content {
        margin-left: 0;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .our-services-section .services-grid,
    .technology-grid,
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-cards-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ui-design-card,
    .mobile-app-card,
    .website-dev-card,
    .ecommerce-card,
    .cms-card,
    .digital-marketing-card,
    .iot-card,
    .erp-card,
    .aem-card,
    .support-card {
        grid-column: span 1;
    }
    
    .service-card {
        min-height: 240px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        top: 1rem;
        right: 1rem;
    }
}

/* Services Hero Section */
.services-hero-section {
    min-height: 70vh;
    background: url('images/service.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Services Hero */
@media (max-width: 768px) {
    .services-hero-section {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Client Logos Marquee Section */
.client-marquee-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    margin-bottom: 40px;
}

.marquee-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    opacity: 0.8;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    gap: 3rem;
    width: max-content;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.client-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-marquee-section {
        padding: 40px 0;
    }
    
    .marquee-title h3 {
        font-size: 1.25rem;
    }
    
    .marquee-track {
        gap: 2rem;
    }
    
    .client-logo {
        height: 40px;
        max-width: 120px;
    }
    
    .marquee-item {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        gap: 1.5rem;
    }
    
    .client-logo {
        height: 35px;
        max-width: 100px;
    }
}

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

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

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

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

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

.hero-actions {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-action {
    margin-top: 2rem;
}

.about-stats {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.case-study-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.case-study-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-content {
    padding: 2rem;
}

.case-study-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.case-study-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-study-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.case-study-link:hover {
    gap: 1rem;
}

.case-studies-actions {
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

/* Removed conflicting general services-grid rule - using specific .services-section .services-grid instead */

/* Removed duplicate general service-card rule - using specific .services-section .service-card instead */

/* Removed duplicate general service-title rule - using specific .services-section .service-title instead */

/* Removed duplicate general service-link hover rule - using specific .services-section .service-link:hover instead */

/* Insights Section */
.insights-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.insights-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.tab-button.active,
.tab-button:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.tab-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.insight-item {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.insight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    padding: 2rem;
}

.insight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.insight-list {
    list-style: none;
    padding: 0;
}

.insight-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.insight-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: url('images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.flags-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 160px;
    flex: 1;
    max-width: 200px;
    justify-content: center;
}

.flag-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.flag-item:hover .office-info {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.flag {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.flag-item:hover .flag {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* UK Flag - Union Jack */
.uk-flag {
    background: url('images/uk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Nigeria Flag */
.nigeria-flag {
    background: url('images/nigeria.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* India Flag */
.india-flag {
    background: url('images/india.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.office-info {
    position: relative;
    background: transparent;
    padding: 0;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: var(--transition-medium);
    width: 100%;
}

.office-info h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.2rem 0;
    line-height: 1.1;
}

.office-info p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}


.contact-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Email Icon */
.email-icon {
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.75rem;
    transition: var(--transition-medium);
}

.email-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.email-link i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.email-text {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 300px;
    justify-content: center;
    transition: var(--transition-medium);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    background: rgba(255, 255, 255, 0.95);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer */
.modern-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links {
    flex: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

/* Contact Info Styles */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Footer CTA Button */
.footer-cta {
    margin-top: 1.5rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.footer-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .tab-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        min-width: 250px;
        padding: 0.75rem 1.5rem;
    }
}

/* Interactive Tech Filter System */
.tech-filter-container {
    margin-bottom: 2rem;
}

.tech-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.tech-filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
}

.tech-filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.tech-filter-btn.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: #f59e0b;
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.tech-filter-btn.active:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Tech Icons Container */
.tech-icons-container {
    position: relative;
    min-height: 300px;
}

.tech-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.tech-icons-grid.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: relative;
}

.tech-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile responsive for tech filter container */
@media (max-width: 768px) {
    .tech-filter-container {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .tech-filter-container {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
}

/* Mobile responsive for tech filter buttons */
@media (max-width: 768px) {
    .tech-filter-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tech-filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        flex-shrink: 0;
        min-width: 120px;
    }
}

@media (max-width: 600px) {
    .tech-filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tech-filter-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tech-filter-buttons {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .tech-filter-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        max-width: 280px;
    }
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.tech-icon-item:hover .tech-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tech-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

/* WhatsApp Integration Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

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

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #128C7E;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1001;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Mobile Responsive for WhatsApp */
@media (max-width: 768px) {
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-whatsapp {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Hide Contact Us button on mobile */
    .btn-primary {
        display: none;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    /* Adjust scroll-to-top button for mobile */
    .scroll-to-top {
        bottom: 1rem !important;
        right: 6rem !important;
        width: 45px !important;
        height: 45px !important;
    }
}