/*
--- HOLOGRAPHIC INTERFACE THEME ---
Fonts: Orbitron (Headings), Rajdhani (Body)
Colors:
  --bg-dark-void: #01010f
  --bg-dark-primary: #0a0e27
  --bg-dark-secondary: #12183d
  --accent-primary: #00f2ea
  --accent-secondary: #d400ff
  --accent-tertiary: #5271ff
  --text-light: #e0e6f7
  --text-medium: #8a96c0
  --text-dark: #01010f
  --glow-color: rgba(0, 242, 234, 0.3)
  --glow-color-secondary: rgba(212, 0, 255, 0.3)
*/

/* ------------------- */
/* 1. ROOT & VARIABLES */
/* ------------------- */
:root {
    --bg-dark-void: #01010f;
    --bg-dark-primary: #0a0e27;
    --bg-dark-secondary: #12183d;
    --accent-primary: #00f2ea;
    --accent-secondary: #d400ff;
    --accent-tertiary: #5271ff;
    --text-light: #e0e6f7;
    --text-medium: #8a96c0;
    --text-dark: #01010f;
    --glow-color: rgba(0, 242, 234, 0.3);
    --glow-color-secondary: rgba(212, 0, 255, 0.2);
    --border-color: rgba(82, 113, 255, 0.2);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --header-height: 80px;
    --border-radius: 8px;
}

/* ------------------- */
/* 2. GLOBAL STYLES & RESET */
/* ------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-void);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* ------------------- */
/* 3. ANIMATIONS & KEYFRAMES */
/* ------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderGrid {

    0%,
    70%,
    100% {
        transform: scale3D(1, 1, 1);
    }

    35% {
        transform: scale3D(0, 0, 1);
    }
}

@keyframes holo-glow {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

@keyframes scanlines {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 50px;
    }
}

@keyframes prism-sweep {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

/* Scroll Animations */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animation].in-view {
    opacity: 1;
}

[data-animation="fade-up"].in-view {
    transform: translateY(0);
}

[data-animation="fade-right"].in-view {
    transform: translateX(0);
}

[data-animation="fade-left"].in-view {
    transform: translateX(0);
}

[data-animation="zoom-in"].in-view {
    transform: scale(1);
}

/* Initial states for scroll animations */
[data-animation="fade-up"] {
    transform: translateY(40px);
}

[data-animation="fade-right"] {
    transform: translateX(-40px);
}

[data-animation="fade-left"] {
    transform: translateX(40px);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}


/* ------------------- */
/* 4. BACKGROUND & OVERLAYS */
/* ------------------- */
.holo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(82, 113, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(212, 0, 255, 0.15) 0%, transparent 50%);
    z-index: -2;
}

.scanlines-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0) 2px,
            rgba(0, 242, 234, 0.03) 3px,
            rgba(0, 242, 234, 0.03) 4px);
    animation: scanlines 2s linear infinite;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.5;
}

/* ------------------- */
/* 5. LOADER */
/* ------------------- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark-void);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.loader-grid {
    display: grid;
    grid-template-columns: repeat(3, 15px);
    grid-template-rows: repeat(3, 15px);
    gap: 5px;
}

.loader-grid div {
    background: var(--accent-primary);
    animation: loaderGrid 1.5s infinite ease-in-out;
}

.loader-grid div:nth-child(1) {
    animation-delay: 0.2s;
}

.loader-grid div:nth-child(2) {
    animation-delay: 0.3s;
}

.loader-grid div:nth-child(3) {
    animation-delay: 0.4s;
}

.loader-grid div:nth-child(4) {
    animation-delay: 0.1s;
}

.loader-grid div:nth-child(5) {
    animation-delay: 0.2s;
}

.loader-grid div:nth-child(6) {
    animation-delay: 0.3s;
}

.loader-grid div:nth-child(7) {
    animation-delay: 0s;
}

.loader-grid div:nth-child(8) {
    animation-delay: 0.1s;
}

.loader-grid div:nth-child(9) {
    animation-delay: 0.2s;
}

/* ------------------- */
/* 6. HEADER & NAVIGATION */
/* ------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-primary);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -10px;
}

.hamburger-inner::after {
    content: '';
    bottom: -10px;
}

.mobile-menu-toggle.active .hamburger-inner {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    padding-top: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
}

.mobile-nav-link.active {
    color: var(--accent-primary);
}


/* ------------------- */
/* 7. BUTTONS & UI ELEMENTS */
/* ------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn span {
    z-index: 2;
}

.btn i {
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-dark);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-color);
}

.btn-primary:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    box-shadow: 0 0 30px rgba(224, 230, 247, 0.5);
    color: var(--bg-dark-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--accent-tertiary);
}

.btn-secondary:hover {
    background-color: var(--accent-tertiary);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(82, 113, 255, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
}


/* ------------------- */
/* 8. SECTION STYLES */
/* ------------------- */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Page Header for subpages */
.page-header-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(rgba(10, 14, 39, 0.8), rgba(10, 14, 39, 0.8)),
        url('data:image/svg+xml,...');
    /* Add a subtle background pattern if needed */
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ------------------- */
/* 9. HERO SECTION */
/* ------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--bg-dark-primary);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(to right, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: holo-glow 8s ease-in-out infinite;
}

/* ------------------- */
/* 10. SERVICES SECTION */
/* ------------------- */
.services-section {
    background-color: var(--bg-dark-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: transparent;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-front::before,
.service-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05));
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.service-card:hover .service-card-front::before {
    opacity: 1;
}

.service-card-back {
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}


/* ------------------- */
/* 11. PROCESS SECTION */
/* ------------------- */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--accent-tertiary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    opacity: 0.3;
}

.process-step {
    padding: 20px 40px;
    position: relative;
    background: transparent;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-step::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-dark-void);
    border: 3px solid var(--accent-primary);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover::after {
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--glow-color);
}

.process-step:nth-child(even)::after {
    left: -10px;
}

.process-content {
    padding: 20px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    position: relative;
}

.process-number {
    position: absolute;
    top: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--accent-tertiary);
    opacity: 0.1;
    z-index: -1;
}

.process-step:nth-child(odd) .process-number {
    right: 20px;
}

.process-step:nth-child(even) .process-number {
    left: 20px;
}

.process-content h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}


/* ------------------- */
/* 12. INDUSTRIES SECTION */
/* ------------------- */
.industries-section {
    background-color: var(--bg-dark-primary);
}

.industry-tabs-wrapper {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.industry-tab {
    background: transparent;
    border: none;
    color: var(--text-medium);
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.industry-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.industry-tab.active,
.industry-tab:hover {
    color: var(--text-light);
}

.industry-tab.active {
    color: var(--accent-primary);
}

.industry-tab.active::after {
    width: 100%;
}

.industry-content {
    display: none;
    padding: 1rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.industry-content.active {
    display: block;
}

.industry-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ------------------- */
/* 13. TESTIMONIALS SECTION */
/* ------------------- */
.testimonial-slider-wrapper {
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 4rem;
}

.testimonial-card {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info h4 {
    color: var(--accent-primary);
    margin-bottom: 0;
}

.author-info span {
    color: var(--text-medium);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider-btn {
    background: rgba(82, 113, 255, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-tertiary);
}

.slider-btn.prev {
    transform: translateX(-70px);
}

.slider-btn.next {
    transform: translateX(70px);
}

/* ------------------- */
/* 14. CTA SECTION */
/* ------------------- */
.cta-section {
    padding: 0;
}

.cta-content-wrapper {
    background-image: linear-gradient(135deg, var(--accent-tertiary), var(--accent-secondary));
    padding: 6rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath opacity=".5" d="M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z"/%3E%3Cpath d="M6 5V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v5h-1v-5h-9v5h-1v-5h-9v5h-1v-5h-9v5h-1v-5h-9v5h-1v-5h-9v5h-1v-5h-9v5h-1v-5h-9v5h-1v-5h-9v5H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5v-9H0v-1h5V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5h9V0h1v5z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-content .btn-primary {
    background: var(--text-light);
    color: var(--text-dark);
    border-color: var(--text-light);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.cta-content .btn-primary:hover {
    background: var(--bg-dark-primary);
    color: var(--text-light);
    border-color: var(--bg-dark-primary);
}

/* ------------------- */
/* 15. FOOTER */
/* ------------------- */
.footer {
    background: var(--bg-dark-primary);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 2rem;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: var(--text-medium);
}

.footer-col ul a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-contact i {
    color: var(--accent-primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

/* ------------------- */
/* 16. CONTACT & LEGAL PAGES */
/* ------------------- */
.contact-section-standalone {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--bg-dark-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--glow-color);
}

.legal-content {
    background: var(--bg-dark-primary);
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
    background: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.legal-section strong {
    color: var(--text-light);
}

/* ------------------- */
/* 17. POPUP & WIDGETS */
/* ------------------- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-dark-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-primary);
    text-align: center;
    position: relative;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-medium);
}

.popup-icon {
    font-size: 4rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 1rem;
}

.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-secondary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px var(--glow-color-secondary);
    transition: transform 0.3s ease, background 0.3s ease;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

.chat-toggle-btn .fa-times {
    display: none;
}

.live-chat-widget.open .fa-comment-dots {
    display: none;
}

.live-chat-widget.open .fa-times {
    display: block;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--bg-dark-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 450px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.live-chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: var(--bg-dark-primary);
    padding: 1rem;
    text-align: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
}

.chat-header p {
    margin: 0;
    font-size: 0.8rem;
}

.chat-body {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
}

.chat-message p {
    background: var(--bg-dark-primary);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    display: inline-block;
    max-width: 80%;
    margin: 0;
}

.chat-footer {
    display: flex;
    padding: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.chat-footer input {
    flex-grow: 1;
    border: none;
    background: transparent;
    color: var(--text-light);
    padding: 0.5rem;
}

.chat-footer input:focus {
    outline: none;
}

.chat-footer button {
    background: transparent;
    border: none;
    color: var(--accent-primary);
    font-size: 1.2rem;
    cursor: pointer;
}


/* ------------------- */
/* 18. RESPONSIVENESS */
/* ------------------- */
@media (max-width: 1024px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .about-col {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .section-title,
    .page-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }

    .process-step::after,
    .process-step:nth-child(even)::after {
        left: 20px;
    }

    .slider-btn.prev {
        transform: translateX(-15px);
    }

    .slider-btn.next {
        transform: translateX(15px);
    }

    .testimonial-slide {
        padding: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .industry-tabs {
        flex-wrap: wrap;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
    }

    .page-header-section {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 40px;
    }
}