/*
--- METAMORPH SKIN THEME ---
Created for Kari Brandon Properties Digital Marketing

TABLE OF CONTENTS
1.  Global Styles & Variables
2.  Preloader & Background
3.  Layout & Container
4.  Typography
5.  Buttons & CTA
6.  Header & Navigation
7.  Footer
8.  Hero Section
9.  Content & Section Styling
10. Services Section
11. Process Section
12. Industries Section
13. Testimonials Section
14. CTA Section
15. Legal & Contact Pages
16. Form Styling
17. Interactive Elements (Back to Top, Chat)
18. Animations & Keyframes
19. Responsiveness (Media Queries)
*/

/* 1. GLOBAL STYLES & VARIABLES
--------------------------------------------- */
:root {
    --primary-color: #9f70f6;
    --secondary-color: #36d1dc;
    --accent-color: #ff6b6b;
    --bg-dark: #0a091e;
    --bg-light: #16152d;
    --bg-lighter: #201f3c;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0c0;
    --white: #ffffff;
    --border-color: rgba(159, 112, 246, 0.2);
    --shadow-color: rgba(159, 112, 246, 0.1);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. PRELOADER & BACKGROUND
--------------------------------------------- */
.metamorph-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #0a091e, #1a184a, #2a2879, #0a091e);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    opacity: 0.7;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    margin-bottom: 20px;
}

.loader-logo img {
    animation: pulse 2s infinite ease-in-out;
}

.loader-bar {
    width: 150px;
    height: 4px;
    background-color: var(--bg-light);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: loadingBar 2s ease-in-out infinite;
}


/* 3. LAYOUT & CONTAINER
--------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section {
    padding: 100px 0;
}

/* 4. TYPOGRAPHY
--------------------------------------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* 5. BUTTONS & CTA
--------------------------------------------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-speed) ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* 6. HEADER & NAVIGATION
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: rgba(10, 9, 30, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    filter: brightness(0) invert(1);
    transition: height var(--transition-speed) ease;
}


.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 1.2rem;
}

.nav-links a {
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    display: block;
    margin: 5px 0;
    transition: all 0.4s ease;
}

.hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-light);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    padding-top: 100px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    width: 100%;
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: var(--white);
    font-size: 1.5rem;
    padding: 10px;
    display: block;
}

.mobile-nav .btn {
    margin-top: 20px;
}

/* 7. FOOTER
--------------------------------------------- */
.footer {
    background-color: #060515;
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-about .logo img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-secondary);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-legal a {
    color: var(--text-secondary);
    margin: 0 10px;
}

/* 8. HERO SECTION
--------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title span {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-down a {
    font-size: 1.5rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

.hero-3d-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color), transparent 60%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    top: 10%;
    left: 15%;
    width: 300px;
    height: 300px;
    animation-duration: 25s;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    animation-duration: 30s;
    animation-delay: -10s;
}

/* 9. CONTENT & SECTION STYLING
--------------------------------------------- */
.content-section {
    position: relative;
    z-index: 2;
    background-color: rgba(16, 15, 45, 0.5);
    /* Semi-transparent layer */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 40px 0;
}


/* 10. SERVICES SECTION
--------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: transparent;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    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;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
}

.service-card-front i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card-back {
    transform: rotateY(180deg);
}

.service-card-back p {
    font-size: 0.9rem;
    margin: 15px 0;
}

.btn-card {
    margin-top: 10px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
}


/* 11. PROCESS SECTION
--------------------------------------------- */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.process-step {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-step:nth-child(odd) .process-content {
    align-items: flex-end;
}

.process-step:nth-child(even) .process-content {
    align-items: flex-start;
}


.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.process-step:nth-child(odd) .process-icon {
    right: -30px;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-content {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
}

.process-content h3 {
    margin-bottom: 10px;
    color: var(--white);
}

/* 12. INDUSTRIES SECTION
--------------------------------------------- */
.industries-content {
    display: flex;
    gap: 40px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.industry-list {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
}

.industry-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 15px 20px;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.industry-tab i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.industry-tab:hover,
.industry-tab.active {
    background-color: var(--bg-lighter);
    color: var(--white);
    border-left-color: var(--primary-color);
}

.industry-details {
    flex-grow: 1;
}

.industry-panel {
    display: none;
}

.industry-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.industry-panel h3 {
    margin-bottom: 20px;
}

.industry-panel ul {
    margin-top: 20px;
    padding-left: 20px;
}

.industry-panel li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.industry-panel li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* 13. TESTIMONIALS SECTION
--------------------------------------------- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
    padding: 40px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.testimonial-quote::before {
    content: '“';
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 0;
    margin-right: 5px;
}

.author-name {
    color: var(--white);
    margin-bottom: 5px;
}

.author-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-btn {
    pointer-events: all;
    background: var(--bg-lighter);
    border: 1px solid var(--border-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* 14. CTA SECTION
--------------------------------------------- */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    padding: 60px 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* 15. LEGAL & CONTACT PAGES
--------------------------------------------- */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(10, 9, 30, 0.7), rgba(10, 9, 30, 0.7)), url('https://via.placeholder.com/1920x600/0a091e/FFFFFF?text=Digital+Strategy') no-repeat center center/cover;
}

.breadcrumbs {
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-primary);
}

.legal-content,
.contact-section {
    padding: 100px 0;
}

.content-wrapper {
    max-width: 800px;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.content-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}


/* 16. FORM STYLING
--------------------------------------------- */
.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--shadow-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--bg-light);
    padding: 0 5px;
    color: var(--primary-color);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239f70f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
}

select.form-control:required:invalid {
    color: var(--text-secondary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

#form-status {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* 17. INTERACTIVE ELEMENTS (Back to Top, Chat)
--------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 50;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.live-chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow-color);
    z-index: 50;
    animation: pulse 2s infinite;
}

/* 18. ANIMATIONS & KEYFRAMES
--------------------------------------------- */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px var(--shadow-color);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px var(--shadow-color);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px var(--shadow-color);
    }
}

@keyframes loadingBar {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 40px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    transform: translateY(100%);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
}

/* 19. RESPONSIVENESS (Media Queries)
--------------------------------------------- */
@media (max-width: 1024px) {

    .main-nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .industries-content {
        flex-direction: column;
    }

    .industry-list {
        flex-direction: row;
        overflow-x: auto;
        flex: 1 1 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .content-section,
    .legal-content,
    .cta-section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left !important;
    }

    .process-step:nth-child(even) {
        left: 0;
    }

    .process-icon {
        left: 0 !important;
    }

    .slider-controls {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .content-wrapper,
    .contact-grid {
        padding: 30px;
    }
}