/*
---
TABLE OF CONTENTS
---
1.  VARIABLES & GLOBAL STYLES
2.  HELPER CLASSES & KEYFRAMES
3.  HEADER & NAVIGATION
4.  MOBILE NAVIGATION
5.  FOOTER
6.  BUTTONS & FORMS
7.  HERO SECTION
8.  GENERAL SECTION STYLING
9.  SERVICES SECTION
10. ABOUT SECTION
11. STATS SECTION
12. INDUSTRIES SECTION
13. TESTIMONIALS SECTION
14. CTA SECTION
15. SUBPAGES (LEGAL, CONTACT)
16. POPUP & WIDGETS
17. RESPONSIVE DESIGN (MEDIA QUERIES)
---
*/

/* 1. VARIABLES & GLOBAL STYLES */
:root {
    --primary-color: #5e42a6;
    --secondary-color: #43a498;
    --accent-color: #64ffda;
    --bg-dark: #0a192f;
    --bg-light-dark: #112240;
    --text-light: #ccd6f6;
    --text-medium: #8892b0;
    --text-dark: #0a192f;
    --white: #ffffff;
    --border-color: rgba(100, 255, 218, 0.1);
    --shadow-color: rgba(2, 12, 27, 0.7);
    --font-family: 'Poppins', sans-serif;
    --transition-speed: 0.3s ease;
    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-medium);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--text-medium);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-speed);
}

a:hover {
    color: var(--white);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

main {
    padding-top: var(--header-height);
}


/* 2. HELPER CLASSES & KEYFRAMES */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.fade-in-left {
    transform: translateX(-30px);
    opacity: 0;
}

.fade-in-right.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.fade-in-right {
    transform: translateX(30px);
    opacity: 0;
}

.animate-on-load {
    opacity: 0;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(100, 255, 218, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(100, 255, 218, 0);
    }
}

/* 3. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: top 0.3s ease, background-color 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    box-shadow: 0 5px 20px var(--shadow-color);
}

.header.hidden {
    top: -100px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: all 0.3s ease-in-out;
}


/* 4. MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(75vw, 400px);
    height: 100vh;
    background-color: var(--bg-light-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    box-shadow: -10px 0px 30px -15px var(--shadow-color);
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.mobile-nav nav li a {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.mobile-nav .btn-primary {
    margin-top: 20px;
}

body.nav-open {
    overflow: hidden;
}

/* Hamburger animation */
.mobile-toggle.is-active .bar-top {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.is-active .bar-middle {
    opacity: 0;
}

.mobile-toggle.is-active .bar-bottom {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* 5. FOOTER */
.footer {
    background-color: var(--bg-light-dark);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 66, 166, 0.2) 0%, rgba(94, 66, 166, 0) 70%);
}

.footer-shape.shape-1 {
    width: 400px;
    height: 400px;
    left: -100px;
    top: -100px;
}

.footer-shape.shape-2 {
    width: 300px;
    height: 300px;
    right: -50px;
    bottom: -50px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
}

.footer-about-text {
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-medium);
    border-radius: 50%;
    color: var(--text-medium);
    font-size: 1rem;
}

.social-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-medium);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-info a {
    color: var(--text-medium);
}

.contact-info a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-medium);
}


/* 6. BUTTONS & FORMS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid transparent;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary:hover {
    color: var(--bg-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-medium);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}


/* 7. HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(94, 66, 166, 0) 60%);
    opacity: 0.15;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -150px;
}

.hero-bg-shapes .shape-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* 8. GENERAL SECTION STYLING */
.services-section {
    background-color: var(--bg-light-dark);
}

.about-section,
.industries-section,
.testimonials-section {
    position: relative;
    overflow: hidden;
}

/* 9. SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-dark);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px -15px var(--shadow-color);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover .card-border {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-title {
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-description {
    margin-bottom: 25px;
}

.service-link {
    font-weight: 500;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* 10. ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-wrapper img {
    filter: grayscale(80%) contrast(1.1);
    transition: var(--transition-speed);
}

.about-image-wrapper:hover img {
    filter: grayscale(0%);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
    mix-blend-mode: screen;
    transition: var(--transition-speed);
}

.about-image-wrapper:hover::after {
    opacity: 0;
}

.image-shape-1 {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid var(--accent-color);
    top: -20px;
    left: -20px;
    border-radius: 8px;
    z-index: -1;
}

.about-content-column .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-content-column .section-description,
.about-content-column .section-title {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}


/* 11. STATS SECTION */
.stats-section {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.9);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number-wrapper {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* 12. INDUSTRIES SECTION */
.industries-wrapper {
    display: flex;
    gap: 40px;
}

.industry-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    border-left: 2px solid var(--border-color);
    transition: var(--transition-speed);
    text-align: left;
}

.industry-tab i {
    font-size: 1.2rem;
    width: 20px;
}

.industry-tab.active,
.industry-tab:hover {
    color: var(--accent-color);
    background-color: var(--bg-light-dark);
    border-left-color: var(--accent-color);
}

.industry-content-wrapper {
    flex-grow: 1;
}

.industry-content {
    display: none;
    animation: fadeIn 0.5s;
}

.industry-content.active {
    display: block;
}

.industry-content h3 {
    margin-bottom: 15px;
}

.industry-content p {
    margin-bottom: 20px;
}

.industry-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-content ul li i {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* 13. TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--bg-light-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--bg-dark);
    padding: 0 10px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    padding-top: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-name {
    color: var(--text-light);
    font-size: 1.1rem;
}

.author-title {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* 14. CTA SECTION */
.cta-section {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-title {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text {
    color: var(--text-light);
    max-width: 600px;
}

.cta-action .btn-primary {
    background-color: var(--white);
    color: var(--bg-dark);
    border-color: var(--white);
    font-weight: 600;
}

.cta-action .btn-primary:hover {
    background-color: var(--bg-dark);
    color: var(--white);
    border-color: var(--bg-dark);
}

/* 15. SUBPAGES (LEGAL, CONTACT) */
.subpage main {
    padding-top: var(--header-height);
}

.page-header {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-light-dark);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-subtitle {
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: var(--text-medium);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs i {
    font-size: 0.8rem;
}

.breadcrumbs span {
    color: var(--text-light);
}

/* Legal Pages Content */
.legal-content h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: var(--bg-light-dark);
    padding: 50px;
    border-radius: 8px;
}

.contact-info-panel h2 {
    margin-bottom: 15px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.method-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form .form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.optional {
    color: var(--text-medium);
    font-weight: 400;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-family: var(--font-family);
    transition: var(--transition-speed);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.3);
}

.contact-form button {
    width: 100%;
}


/* 16. POPUP & WIDGETS */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup:target {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: var(--bg-light-dark);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-medium);
}

.popup-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.popup-content h3 {
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 25px;
}

.popup-close-btn {
    display: inline-block;
}

.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 998;
    animation: pulse 2s infinite;
}


/* 17. RESPONSIVE DESIGN (MEDIA QUERIES) */

/* Tablets and larger devices */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-column {
        max-width: 500px;
        margin: 0 auto;
    }

    .industries-wrapper {
        flex-direction: column;
    }

    .industry-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .industry-tab {
        flex-shrink: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .contact-info li {
        justify-content: center;
    }

    .footer-col-title {
        margin-top: 20px;
    }

    .cta-wrapper {
        text-align: center;
        padding: 40px 30px;
    }

    .cta-action {
        width: 100%;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form .form-row .form-group:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .header .header-cta {
        display: none;
    }

    .logo-text {
        display: none;
    }
}