:root {
    --primary-dark: #0a0a0f;
    --secondary-dark: #12121a;
    --tertiary-dark: #1a1a25;
    --accent-orange: #ff6b35;
    --accent-amber: #ffa726;
    --accent-glow: #ff8c42;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a0;
    --text-muted: #606060;
    --grid-line: rgba(255, 107, 53, 0.05);
    --glow-soft: rgba(255, 107, 53, 0.3);
    --glow-intense: rgba(255, 140, 66, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber);
}

a {
    text-decoration: none;
    color: var(--text-secondary);
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar-custom {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(255, 107, 53, 0.1);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary) !important;
    letter-spacing: 2px;
}

.navbar-brand span {
    color: var(--accent-orange);
    text-shadow: 0 0 20px var(--glow-soft);
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hide default Bootstrap caret */
.nav-link.dropdown-toggle::after {
    display: none;
}

/* Custom dropdown caret */
.dropdown-caret {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .dropdown-caret {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow-soft);
}

.nav-link:hover {
    color: var(--accent-orange) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--accent-orange);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega Menu */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    border: none;
    border-radius: 0;
    background: rgba(18, 18, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--accent-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    margin-top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

.mega-menu-content {
    display: flex;
    gap: 20px;
}

.mega-menu-service {
    flex: 1;
    padding: 18px;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.mega-menu-service:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-3px);
}

.mega-menu-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1rem;
    margin-bottom: 12px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.mega-menu-service:hover .mega-menu-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.mega-menu-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.mega-menu-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.mega-menu-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.mega-menu-link:hover {
    color: var(--accent-amber);
    gap: 10px;
}

.mega-menu-sidebar {
    width: 220px;
    min-width: 220px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 10, 15, 0.8) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.mega-menu-sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.mega-menu-sidebar-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.mega-menu-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.mega-menu-all-link:hover {
    background: var(--accent-amber);
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Desktop/Mobile Nav Show/Hide */
.desktop-nav {
    display: none;
}

.mobile-nav {
    display: flex;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-nav {
        display: none !important;
    }
}

/* Mobile Navigation */
.mobile-nav {
    padding: 8px 0;
}

.mobile-nav .container {
    padding-left: 12px;
    padding-right: 12px;
}

.mobile-nav .navbar-brand {
    font-size: 1.1rem;
}

.mobile-nav .navbar-toggler {
    padding: 5px 8px;
    border: 1px solid rgba(255, 107, 53, 0.5);
}

.mobile-nav .navbar-toggler-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 107, 53, 0.2);
    width: 280px;
}

.mobile-offcanvas .offcanvas-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.mobile-offcanvas .offcanvas-header .navbar-brand {
    font-size: 1.1rem;
}

.btn-close-mobile {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.btn-close-mobile:hover {
    color: var(--accent-orange);
}

.mobile-offcanvas .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mobile Menu List */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.mobile-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-menu-list > li > a:hover,
.mobile-menu-list > li > a.active {
    color: var(--accent-orange);
}

.mobile-menu-list > li > a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-menu-list > li.has-submenu.open > a i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0 0 10px 15px;
    margin: 0;
    display: none;
    border-left: 2px solid rgba(255, 107, 53, 0.2);
}

.mobile-menu-list > li.has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
    color: var(--accent-orange);
    padding-left: 20px;
}

.mobile-submenu li a.view-all {
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 5px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.mobile-contact-info a i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.mobile-contact-info a:hover {
    color: var(--accent-orange);
}

.mobile-social {
    display: flex;
    gap: 12px;
}

.mobile-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

/* Mega Menu Responsive */
@media (max-width: 991px) {
    .mega-dropdown {
        position: relative !important;
    }
    
    .mega-menu {
        position: static !important;
        width: 100%;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: none;
        padding: 15px;
        margin: 10px 0 !important;
        background: rgba(10, 10, 15, 0.95);
    }
    
    .mega-menu-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .mega-menu-service {
        padding: 15px;
        clip-path: none;
    }
    
    .mega-menu-service:hover {
        transform: none;
    }
    
    .mega-menu-sidebar {
        width: 100%;
        min-width: 100%;
        clip-path: none;
        margin-top: 10px;
    }
    
    .mega-menu-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .mega-menu-title {
        font-size: 0.85rem;
    }
    
    .mega-menu-desc {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/home-hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(40%) brightness(0.45);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.7) 0%, 
        rgba(10, 10, 15, 0.5) 50%, 
        rgba(10, 10, 15, 0.9) 100%);
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
}

.hero-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.2);
}

.hero-title .highlight {
    color: var(--accent-orange);
    text-shadow: 0 0 20px var(--glow-soft), 0 0 40px rgba(255, 107, 53, 0.15);
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 35px;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-custom {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    border: none;
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-custom::before {
    content: '';
    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.5s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-soft);
    color: var(--primary-dark);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-secondary-custom {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    text-decoration: none;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow-soft);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-shadow: 0 0 15px var(--glow-soft);
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-arrow::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.3; }
}

/* Page Header */
.page-header {
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://picsum.photos/1920/600?random=50');
    background-size: cover;
    background-position: center;
    filter: grayscale(50%) brightness(0.2);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.8) 0%, 
        rgba(10, 10, 15, 0.9) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header-title span {
    color: var(--accent-orange);
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-custom li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom li a:hover {
    color: var(--accent-orange);
}

.breadcrumb-custom li.active {
    color: var(--accent-orange);
}

.breadcrumb-custom li + li::before {
    content: '//';
    margin-right: 12px;
    color: var(--accent-orange);
}

/* Section Styling */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent-orange);
    box-shadow: 0 0 8px var(--glow-soft);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--accent-orange);
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--primary-dark) 100%);
}

.service-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 107, 53, 0.08);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 18px;
    font-size: 1.2rem;
    color: var(--accent-orange);
    position: relative;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--glow-soft);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-amber);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* About Section */
.about-section {
    background: var(--primary-dark);
}

.about-image-container {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    filter: grayscale(20%);
}

.about-image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--accent-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.overlay-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.overlay-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.about-features li i {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.portfolio-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--primary-dark);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.portfolio-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.portfolio-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: var(--accent-orange);
}

/* Blog Section */
.blog-section {
    background: var(--primary-dark);
}

.blog-grid-section {
    background: var(--primary-dark);
    padding: 70px 0;
}

.blog-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.blog-category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.blog-meta span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta span i {
    color: var(--accent-orange);
}

.blog-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-orange);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-read-more {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-amber);
    gap: 10px;
}

/* Blog Single Page */
.blog-single-section {
    padding: 70px 0;
    background: var(--primary-dark);
}

.blog-single-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 30px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.blog-single-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-single-meta span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-single-meta span i {
    color: var(--accent-orange);
}

.blog-single-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-single-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.blog-single-content p {
    margin-bottom: 18px;
}

.blog-single-content h2,
.blog-single-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.blog-single-content h2 {
    font-size: 1.4rem;
}

.blog-single-content h3 {
    font-size: 1.1rem;
}

.blog-single-content blockquote {
    border-left: 3px solid var(--accent-orange);
    padding: 15px 25px;
    margin: 25px 0;
    background: rgba(255, 107, 53, 0.05);
    font-style: italic;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.blog-single-content ul,
.blog-single-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.blog-single-content li {
    margin-bottom: 8px;
}

.blog-tags {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.blog-tags-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.blog-tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-tag {
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 25px;
}

.sidebar-widget {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-orange);
}

.sidebar-search {
    display: flex;
}

.sidebar-search input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.sidebar-search button {
    padding: 10px 14px;
    background: var(--accent-orange);
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search button:hover {
    background: var(--accent-amber);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 8px;
}

.sidebar-categories li a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-categories li a:hover {
    color: var(--accent-orange);
    padding-left: 8px;
}

.sidebar-categories li a span {
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 8px;
    font-size: 0.7rem;
    color: var(--accent-orange);
}

.sidebar-recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-recent-post:last-child {
    margin-bottom: 0;
}

.sidebar-recent-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-recent-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-recent-content h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-recent-content h4 a:hover {
    color: var(--accent-orange);
}

.sidebar-recent-content span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Pagination */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-custom a,
.pagination-custom span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.pagination-custom a:hover,
.pagination-custom span.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--primary-dark);
}

/* Team Section */
.team-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.team-card {
    position: relative;
    overflow: hidden;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.team-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all 0.4s ease;
}

.team-card:hover .team-image {
    filter: grayscale(0%);
}

.team-info {
    padding: 18px;
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.team-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--primary-dark);
}

.testimonial-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent-orange);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.testimonial-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-company {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(10, 10, 15, 0.95) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 25px 25px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    background: var(--primary-dark);
}

.contact-info-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px;
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact-value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--accent-orange);
}

.contact-form-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
}

.footer-brand span {
    color: var(--accent-orange);
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-newsletter {
    display: flex;
    gap: 8px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.footer-newsletter button {
    padding: 10px 18px;
    background: var(--accent-orange);
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: var(--accent-amber);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-orange);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Scan Line Effect */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0.08;
    animation: scan 10s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Portfolio Single - Project Hero */
.project-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-top: 80px;
    padding-bottom: 60px;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) brightness(0.3);
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
}

.project-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.project-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-hero-title span {
    color: var(--accent-orange);
}

.project-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.project-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.meta-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Project Overview Section */
.project-overview-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.project-overview-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-goals {
    margin-top: 30px;
    padding: 25px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.goals-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.goals-list li:last-child {
    margin-bottom: 0;
}

.goals-list li i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.project-overview-image img {
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

/* Project Results Section */
.project-results-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.result-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.result-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.result-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin: 0 auto 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.result-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-shadow: 0 0 20px var(--glow-soft);
    margin-bottom: 5px;
}

.result-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.result-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Project Solution Section */
.project-solution-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.project-solution-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-features {
    margin-top: 30px;
}

.solution-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.solution-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 107, 53, 0.3);
    min-width: 50px;
}

.feature-info h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.project-solution-image {
    position: relative;
}

.project-solution-image img {
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.solution-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* Project Gallery Section */
.project-gallery-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Project Tech Section */
.project-tech-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.project-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-tech-category {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.tech-category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(10, 10, 15, 0.5);
    transition: all 0.3s ease;
}

.tech-item-card:hover {
    background: rgba(255, 107, 53, 0.1);
}

.tech-item-card i {
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.tech-item-card span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Project Testimonial Section */
.project-testimonial-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.project-testimonial {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 50px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.project-testimonial-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.project-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.project-testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
}

.author-details {
    text-align: left;
}

.author-details .author-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-details .author-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.author-company img {
    height: 25px;
    width: auto;
    opacity: 0.6;
    filter: brightness(2);
}

/* Project Navigation Section */
.project-nav-section {
    background: var(--primary-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-nav-item {
    text-decoration: none;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.project-nav-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.project-nav-item.prev {
    text-align: left;
}

.project-nav-item.next {
    text-align: right;
}

.nav-direction {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.nav-direction i {
    color: var(--accent-orange);
}

.project-nav-item .nav-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.project-nav-item:hover .nav-title {
    color: var(--accent-orange);
}

.project-nav-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 15px 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.project-nav-all:hover {
    background: var(--accent-orange);
}

.project-nav-all i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    transition: color 0.3s ease;
}

.project-nav-all span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.project-nav-all:hover i,
.project-nav-all:hover span {
    color: var(--primary-dark);
}

/* Related Projects Section */
.related-projects-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

/* Portfolio Stats Section */
.portfolio-stats-section {
    background: var(--primary-dark);
    padding: 60px 0;
}

.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(18, 18, 26, 0.9) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 35px 30px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.portfolio-stat-item {
    text-align: center;
    padding: 15px;
}

.portfolio-stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-shadow: 0 0 20px var(--glow-soft);
    margin-bottom: 5px;
}

.portfolio-stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--primary-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.portfolio-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 10px;
}

.portfolio-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.portfolio-action-btn:hover {
    background: var(--accent-amber);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.portfolio-content {
    padding: 20px;
}

.portfolio-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.portfolio-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tech span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-muted);
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Project Section */
.featured-project-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.featured-project-image {
    position: relative;
}

.featured-project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge i {
    font-size: 0.8rem;
}

.featured-project-content {
    padding-left: 40px;
}

.featured-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.featured-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.featured-highlight {
    text-align: center;
}

.featured-highlight .highlight-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.featured-highlight .highlight-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.featured-tech span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 6px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio Testimonial Section */
.portfolio-testimonial-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.testimonial-large {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 50px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 0 auto 25px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.testimonial-large .testimonial-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Search Section */
.faq-search-section {
    background: var(--primary-dark);
    padding: 60px 0;
}

.faq-search-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-search-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.faq-search-box {
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.faq-search-box input {
    width: 100%;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 18px 20px 18px 55px;
    font-size: 1rem;
    color: var(--text-primary);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: all 0.3s ease;
}

.faq-search-box input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.1);
}

.faq-search-box input::placeholder {
    color: var(--text-muted);
}

/* FAQ Categories Section */
.faq-categories-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.faq-category-card {
    display: block;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    text-align: center;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.faq-category-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.05);
}

.faq-category-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.4rem;
    margin: 0 auto 18px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.faq-category-card:hover .faq-category-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.faq-category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-category-count {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* FAQ Content Section */
.faq-content-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.faq-group {
    margin-bottom: 50px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.faq-group-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.1rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.faq-group-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-list-full {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-full {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.faq-item-full:hover {
    border-color: rgba(255, 107, 53, 0.25);
}

.faq-question-full {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-full:hover {
    background: rgba(255, 107, 53, 0.03);
}

.faq-question-full span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding-right: 20px;
}

.faq-question-full i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question-full[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer-full {
    padding: 0 25px 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* FAQ Contact Section */
.faq-contact-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.faq-contact-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(18, 18, 26, 0.9) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 40px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.faq-contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-contact-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.faq-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* FAQ Resources Section */
.faq-resources-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.resource-card {
    display: block;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.resource-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.resource-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 18px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.resource-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.resource-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.resource-card:hover .resource-link {
    gap: 10px;
}

/* Contact Cards Section */
.contact-cards-section {
    background: var(--primary-dark);
    padding: 80px 0 40px;
}

.contact-info-box {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact-info-box:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.4rem;
    margin: 0 auto 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.contact-info-box:hover .contact-info-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.contact-info-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Main Section */
.contact-main-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 60px 0 80px;
}

.contact-form-wrapper {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 35px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-form-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.contact-page-form .form-group {
    margin-bottom: 20px;
}

.contact-page-form .form-control {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 12px 15px;
    font-size: 0.9rem;
}

.contact-page-form .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

.contact-page-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    cursor: pointer;
}

.contact-page-form textarea.form-control {
    min-height: 140px;
}

.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-custom input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

.form-check-custom label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.form-check-custom label a {
    color: var(--accent-orange);
    text-decoration: none;
}

.form-check-custom label a:hover {
    text-decoration: underline;
}

/* Contact Sidebar */
.contact-sidebar-box {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact-sidebar-box.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(18, 18, 26, 0.9) 100%);
    border-color: rgba(255, 107, 53, 0.25);
}

.sidebar-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.sidebar-box-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

.quick-contact-item i {
    color: var(--accent-orange);
    font-size: 1rem;
    width: 20px;
}

.quick-contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.quick-contact-item a:hover {
    color: var(--accent-orange);
}

.contact-social-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.social-link-box {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link-box:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.response-time-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.response-stats {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.response-stat {
    text-align: center;
}

.response-stat .stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.response-stat .stat-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map Section */
.map-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.map-wrapper {
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    overflow: hidden;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--tertiary-dark) 100%);
    background-image: url('https://picsum.photos/1200/400?random=145&grayscale');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
}

.map-overlay-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.map-pin {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 0 auto 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.map-overlay-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.map-overlay-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-sm {
    padding: 10px 20px !important;
    font-size: 0.75rem !important;
}

/* Offices Section */
.offices-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.office-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.office-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.office-flag {
    font-size: 2rem;
    margin-bottom: 15px;
}

.office-city {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.office-city span {
    font-size: 0.7rem;
    background: var(--accent-orange);
    color: var(--primary-dark);
    padding: 3px 8px;
    margin-left: 8px;
    vertical-align: middle;
}

.office-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-contact span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-contact span i {
    color: var(--accent-orange);
    font-size: 0.85rem;
}

/* Solutions Intro Section */
.solutions-intro-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.solutions-intro-stats {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.intro-stat {
    text-align: center;
    padding: 20px;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    min-width: 120px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.intro-stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.intro-stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Solutions Grid Section */
.solutions-grid-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.solution-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.solution-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.solution-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(18, 18, 26, 0.9) 100%);
    border-color: rgba(255, 107, 53, 0.25);
}

.solution-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.solution-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.3rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.solution-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

.solution-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.solution-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.solution-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-features li i {
    color: var(--accent-orange);
    font-size: 0.75rem;
}

.solution-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: var(--accent-amber);
    gap: 10px;
}

/* Process Section */
.process-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.process-item {
    flex: 1;
    position: relative;
    text-align: center;
}

.process-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-content {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 20px 15px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    border-color: rgba(255, 107, 53, 0.3);
}

.process-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.process-line {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.process-item:last-child .process-line {
    display: none;
}

/* Solution Hero */
.solution-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.solution-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(50%) brightness(0.25);
}

.solution-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.solution-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.solution-hero-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin: 20px auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.solution-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.solution-hero-title span {
    color: var(--accent-orange);
}

.solution-hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Solution Overview Section */
.solution-overview-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.solution-overview-image {
    position: relative;
}

.overview-img-main {
    width: 100%;
    height: 350px;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.overview-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--accent-orange);
    padding: 15px 25px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.badge-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-overview-content {
    padding-left: 40px;
}

.overview-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.highlight-item i {
    color: var(--accent-orange);
}

/* Solution Features Section */
.solution-features-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.feature-box {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.feature-box:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 15px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Technologies Section */
.technologies-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.tech-item {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.tech-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.tech-item i {
    font-size: 1.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.tech-item:hover i {
    color: var(--accent-orange);
}

.tech-item span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.pricing-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.pricing-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(18, 18, 26, 0.9) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-price {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.price-currency {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--accent-orange);
    vertical-align: top;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--accent-orange);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 12px 25px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.pricing-btn:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.pricing-card.featured .pricing-btn {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--accent-amber);
}

/* Case Studies Section */
.case-studies-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.case-study-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.case-study-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.case-study-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover .case-study-overlay {
    opacity: 1;
}

.case-study-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.case-study-content {
    padding: 20px;
}

.case-study-category {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.case-study-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.case-study-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.faq-list {
    padding-left: 30px;
}

.faq-item {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin-bottom: 15px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.03);
}

.faq-question span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About Story Section */
.about-story-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.about-story-images {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.story-image-main {
    width: 100%;
    height: 320px;
    object-fit: cover;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.story-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 140px;
    object-fit: cover;
    border: 3px solid var(--primary-dark);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.story-experience-badge {
    position: absolute;
    top: 20px;
    right: 50px;
    background: var(--accent-orange);
    padding: 15px 20px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.experience-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.experience-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-story-content {
    padding-left: 30px;
}

.story-lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.story-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.signature-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
}

.signature-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.signature-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Vision Section */
.mission-vision-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.mv-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 30px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.mv-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.mv-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(18, 18, 26, 0.8) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.mv-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.mv-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mv-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.mv-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card:hover .mv-decoration {
    opacity: 1;
}

/* About Stats Section */
.about-stats-section {
    background: var(--primary-dark);
    padding: 60px 0;
}

.stats-wrapper {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(18, 18, 26, 0.9) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 40px 30px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.about-stat-item {
    text-align: center;
    padding: 15px;
}

.about-stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-shadow: 0 0 20px var(--glow-soft);
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-orange), rgba(255, 107, 53, 0.2));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    right: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    border: 3px solid var(--primary-dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -8px;
}

.timeline-content {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 20px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 8px;
    display: block;
}

.timeline-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    background: var(--primary-dark);
    padding: 80px 0;
}

.value-card {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px 20px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.value-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.value-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

.value-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 18px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.value-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.client-logo {
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.client-logo:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.client-logo i {
    font-size: 1.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.client-logo:hover i {
    color: var(--accent-orange);
}

.client-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-stats {
        gap: 30px;
    }

    .about-image-overlay {
        bottom: -15px;
        right: -15px;
        width: 110px;
        height: 110px;
    }

    .overlay-number {
        font-size: 1.5rem;
    }

    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .page-header-title {
        font-size: 2rem;
    }

    .blog-single-title {
        font-size: 1.5rem;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    /* About page responsive */
    .about-story-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-story-images {
        padding-right: 20px;
        padding-bottom: 20px;
    }
    
    .story-experience-badge {
        right: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 12px;
        right: auto;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Solutions page responsive */
    .solutions-intro-stats {
        justify-content: flex-start;
        margin-top: 30px;
    }
    
    .process-grid {
        flex-wrap: wrap;
    }
    
    .process-item {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 30px;
    }
    
    .process-line {
        display: none;
    }
    
    .solution-hero-title {
        font-size: 2rem;
    }
    
    .solution-overview-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .faq-list {
        padding-left: 0;
        margin-top: 30px;
    }
    
    /* Contact page responsive */
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-social-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    /* Portfolio page responsive */
    .portfolio-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-project-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .testimonial-large {
        padding: 35px;
    }
    
    .testimonial-large .testimonial-text {
        font-size: 1.05rem;
    }
    
    /* FAQ page responsive */
    .faq-contact-buttons {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    /* Portfolio Single page responsive */
    .project-hero-title {
        font-size: 2.2rem;
    }
    
    .project-hero-meta {
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .project-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .project-testimonial {
        padding: 35px;
    }
    
    .project-testimonial-text {
        font-size: 1.1rem;
    }
    
    .project-nav-item .nav-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header-title {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }

    .blog-single-title {
        font-size: 1.3rem;
    }

    .blog-single-image {
        height: 220px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }
    
    /* About page mobile */
    .story-image-main {
        height: 250px;
    }
    
    .story-image-secondary {
        width: 140px;
        height: 100px;
    }
    
    .story-experience-badge {
        top: 15px;
        right: 20px;
        padding: 12px 15px;
    }
    
    .experience-number {
        font-size: 1.4rem;
    }
    
    .about-stat-number {
        font-size: 1.8rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logo {
        padding: 20px 10px;
    }
    
    .client-logo i {
        font-size: 1.5rem;
    }
    
    /* Solutions page mobile */
    .solutions-intro-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-stat {
        width: 100%;
    }
    
    .process-item {
        flex: 0 0 100%;
    }
    
    .solution-hero-title {
        font-size: 1.6rem;
    }
    
    .solution-hero-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .overview-img-main {
        height: 250px;
    }
    
    .overview-highlights {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    /* Contact page mobile */
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-info-box {
        padding: 25px 20px;
    }
    
    .contact-social-links {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .response-stats {
        gap: 15px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    /* Portfolio page mobile */
    .portfolio-stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 25px 20px;
    }
    
    .portfolio-stat-number {
        font-size: 1.5rem;
    }
    
    .portfolio-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.7rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-project-image img {
        height: 280px;
    }
    
    .featured-highlights {
        gap: 20px;
    }
    
    .testimonial-large {
        padding: 25px;
    }
    
    .testimonial-large .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* FAQ page mobile */
    .faq-search-title {
        font-size: 1.4rem;
    }
    
    .faq-contact-wrapper {
        padding: 25px;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
    }
    
    .faq-question-full span {
        font-size: 0.9rem;
    }
    
    /* Portfolio Single page mobile */
    .project-hero {
        min-height: 60vh;
    }
    
    .project-hero-title {
        font-size: 1.8rem;
    }
    
    .project-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .project-hero-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .meta-item {
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .result-card {
        padding: 20px 15px;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .project-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.gallery-large {
        grid-column: span 1;
    }
    
    .project-testimonial {
        padding: 25px;
    }
    
    .project-testimonial-text {
        font-size: 0.95rem;
    }
    
    .project-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-nav-item {
        width: 100%;
        text-align: center !important;
    }
    
    .project-nav-all {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    /* Mobile container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero section mobile spacing adjustment */
    .hero-section {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-label {
        font-size: 0.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    /* Mobile footer adjustments */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
}