/* Table of Contents
--------------------------------
1.  Global Styles & Variables
2.  Preloader & Custom Cursor
3.  Typography & Headings
4.  Buttons & Common Elements
5.  Header & Navigation
6.  Footer
7.  Hero Section
8.  Services Section
9.  Process Section
10. Industry Section
11. Testimonials Section
12. CTA Section
13. Page Header (for inner pages)
14. Legal & Contact Page Styles
15. Animations & Keyframes
16. Responsive Design (Media Queries)
-------------------------------- */

/* 1. Global Styles & Variables
-------------------------------- */
:root {
    --color-silver: #C0C0C0;
    --color-aqua: #00E0FF;
    --color-jet-black: #0B0B0B;
    --color-dark-grey: #1a1a1a;
    --color-medium-grey: #2c2c2c;
    --color-light-grey: #555;
    --color-white: #FAFAFA;
    --color-white-trans: rgba(250, 250, 250, 0.7);
    --color-black-trans: rgba(11, 11, 11, 0.8);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Orbitron', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --section-padding: 100px 0;
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-jet-black);
    color: var(--color-white-trans);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

body.no-scroll {
    overflow: hidden;
}

a,
button {
    cursor: none;
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: var(--section-padding);
}

.highlight {
    color: var(--color-aqua);
    font-family: var(--font-secondary);
    font-weight: 700;
}

/* 2. Preloader & Custom Cursor
-------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-jet-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
    animation: pulse 2s infinite ease-in-out;
}

.preloader-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-aqua);
    box-shadow: 0 0 10px var(--color-aqua);
    animation: scan 2s linear infinite;
}

.preloader-text {
    font-family: var(--font-secondary);
    color: var(--color-silver);
    letter-spacing: 2px;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-aqua);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-aqua);
    transition-duration: 0.1s;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 224, 255, 0.1);
}

/* 3. Typography & Headings
-------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 5px rgba(0, 224, 255, 0.2);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* 4. Buttons & Common Elements
-------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    position: relative;
    z-index: 2;
    transition: transform var(--transition-fast);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-aqua);
    color: var(--color-jet-black);
    border-color: var(--color-aqua);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-aqua);
    box-shadow: 0 0 15px var(--color-aqua);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-silver);
}

.btn-secondary:hover {
    border-color: var(--color-aqua);
    color: var(--color-aqua);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.5);
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* 5. Header & Navigation
-------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header.scrolled {
    background-color: var(--color-black-trans);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img {
    height: 45px;
    filter: invert(1);
    transition: transform var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--color-silver);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-aqua);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
}

/* 6. Footer
-------------------------------- */
.footer {
    background-color: var(--color-dark-grey);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-medium-grey);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column .logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: invert(1);
}

.footer-about-text {
    margin-bottom: 25px;
    color: var(--color-silver);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-light-grey);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--color-aqua);
    border-color: var(--color-aqua);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--color-white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-silver);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-aqua);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-silver);
}

.footer-contact i {
    color: var(--color-aqua);
    margin-top: 5px;
}

.footer-contact a {
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-aqua);
}

.footer-bottom {
    border-top: 1px solid var(--color-medium-grey);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--color-aqua);
}

/* 7. Hero Section
-------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0;
    overflow: hidden;
}

.hero-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 224, 255, 0.1), transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    perspective: 2000px;
}

.globe-container {
    width: 100%;
    aspect-ratio: 1/1;
}

#globe-canvas {
    width: 100% !important;
    height: 100% !important;
}

.hero-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--color-black-trans);
    border: 1px solid var(--color-medium-grey);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero-stat-card i {
    color: var(--color-aqua);
}

.card-1 {
    top: 20%;
    left: -10%;
}

.card-2 {
    bottom: 20%;
    right: -10%;
}

/* 8. Services Section
-------------------------------- */
.services-section {
    background-color: var(--color-dark-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    perspective: 1500px;
    background: transparent;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    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: 30px;
    border: 1px solid var(--color-medium-grey);
    border-radius: var(--border-radius);
    background: linear-gradient(145deg, var(--color-dark-grey), var(--color-jet-black));
}

.service-card-back {
    transform: rotateY(180deg);
    align-items: flex-start;
    text-align: left;
    justify-content: space-between;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-aqua);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--color-aqua);
}

.service-title {
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
}

.service-card-back ul {
    width: 100%;
}

.service-card-back li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-back i {
    color: var(--color-aqua);
}

.service-card-back .btn {
    align-self: flex-start;
    border-color: var(--color-aqua);
    color: var(--color-aqua);
}

.service-card-back .btn:hover {
    background: var(--color-aqua);
    color: var(--color-jet-black);
}

/* 9. Process Section
-------------------------------- */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-medium-grey);
    transform: translateX(-1px);
}

.process-step {
    position: relative;
    padding: 30px 40px;
    width: 50%;
    margin-bottom: 30px;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.process-step:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.process-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-dark-grey);
    border: 2px solid var(--color-aqua);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: var(--color-aqua);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.5);
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-number {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-aqua);
    margin-bottom: 10px;
}

.process-title {
    margin-bottom: 10px;
}

/* 10. Industry Section
-------------------------------- */
.industry-section {
    background-color: var(--color-dark-grey);
}

.industry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.industry-content .section-title {
    text-align: left;
}

.industry-content p {
    margin-bottom: 30px;
}

.industry-list {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.industry-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.industry-list i {
    color: var(--color-aqua);
}

.industry-visual {
    position: relative;
}

.industry-image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.industry-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.industry-image-wrapper img {
    transition: transform 0.5s ease;
}

.industry-image-wrapper:hover img {
    transform: scale(1.05);
}

.industry-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(320deg, rgba(0, 224, 255, 0.2), transparent 50%);
    pointer-events: none;
}

/* 11. Testimonials Section
-------------------------------- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-smooth);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    border: 1px solid var(--color-medium-grey);
    border-radius: var(--border-radius);
    background-color: var(--color-dark-grey);
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-name {
    color: var(--color-white);
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-silver);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--color-medium-grey);
    opacity: 0.5;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--color-dark-grey);
    border: 1px solid var(--color-medium-grey);
    border-radius: 50%;
    color: var(--color-silver);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--color-aqua);
    color: var(--color-jet-black);
    border-color: var(--color-aqua);
}

/* 12. CTA Section
-------------------------------- */
.cta-section {
    background: linear-gradient(rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=3600') no-repeat center center/cover;
    background-attachment: fixed;
}

.cta-container {
    text-align: center;
    padding: 60px 0;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--color-silver);
}

/* 13. Page Header (for inner pages)
-------------------------------- */
.page-header-section {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-grey);
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300%;
    height: 150%;
    background: radial-gradient(ellipse at top, rgba(0, 224, 255, 0.1), transparent 40%);
    pointer-events: none;
}

.page-header-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header-section p {
    font-size: 1.2rem;
    color: var(--color-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* 14. Legal & Contact Page Styles
-------------------------------- */
.legal-page .page-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-dark-grey);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-medium-grey);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-aqua);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-medium-grey);
}

.legal-page p {
    margin-bottom: 15px;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--color-dark-grey);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-medium-grey);
}

.contact-info-block .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-details-list {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--color-aqua);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-medium-grey);
    border-radius: 50%;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--color-silver);
    transition: var(--transition-fast);
}

.contact-detail-item a:hover {
    color: var(--color-aqua);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background-color: var(--color-jet-black);
    border: 1px solid var(--color-medium-grey);
    border-radius: var(--border-radius);
    color: var(--color-white);
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-aqua);
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.3);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-aqua);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-dark-grey);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--color-silver);
}

.popup-icon {
    font-size: 4rem;
    color: var(--color-aqua);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 30px;
}

/* 15. Animations & Keyframes
-------------------------------- */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate="fade-in"] {
    transform: translateY(0);
}

[data-animate="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animate="slide-in-right"] {
    transform: translateX(50px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* 16. Responsive Design (Media Queries)
-------------------------------- */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    h1,
    .hero-title {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--color-dark-grey);
        z-index: 1001;
        transition: right var(--transition-smooth);
        padding: 60px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .card-1 {
        top: 0;
        left: 0;
    }

    .card-2 {
        bottom: 0;
        right: 0;
    }

    .industry-container {
        grid-template-columns: 1fr;
    }

    .industry-content {
        text-align: center;
    }

    .industry-content .section-title {
        text-align: center;
    }

    .industry-visual {
        margin-top: 40px;
    }

    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 80px;
        text-align: left;
    }

    .process-step:nth-child(odd) {
        text-align: left;
        padding-right: 40px;
    }

    .timeline-line {
        left: 30px;
    }

    .process-icon,
    .process-step:nth-child(odd) .process-icon,
    .process-step:nth-child(even) .process-icon {
        left: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-actions .btn-primary {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-page-wrapper {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px 0;
    }

    html {
        font-size: 15px;
    }

    h1,
    .hero-title {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stat-card {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .nav {
        width: 90%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-inner {
        height: auto;
        min-height: 300px;
    }

    .legal-page .page-content,
    .contact-page-wrapper {
        padding: 20px;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button {
        cursor: pointer;
    }
}