/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #000000;
    --accent-color: #a200ff;
}

body {
    background-color: rgb(0, 0, 0);
    color: var(--primary-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.mouse-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.mouse-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(162, 0, 255, 0.7), rgba(162, 0, 255, 0.5) 40%, rgba(162, 0, 255, 0.3) 70%, transparent 85%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
    animation: star-fade 1000ms ease-out forwards;
    filter: blur(0.5px);
    box-shadow: 0 0 4px rgba(162, 0, 255, 0.4);
}

@keyframes star-fade {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.elenos {
    height: 40px;
    transition: height 0.3s ease;
}

.process-section {
    padding: clamp(3rem, 4rem, 4rem) clamp(1.5rem, 10%, 10%);
    background-color: #000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    color: #fff;
    position: relative;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.process-section > * {
    position: relative;
    z-index: 1;
}

#services {
    background-color: #000;
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    position: relative;
}

#services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#services > * {
    position: relative;
    z-index: 1;
}

.process-section h3 {
    text-align: center;
    font-size: clamp(1.75rem, 2.5rem, 2.5rem);
    margin-bottom: 3rem;
    color: #fff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem 0;
}

/* Center timeline bar */
.process-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #333;
    transform: translateX(-50%);
}

/* Active timeline bar that fills on scroll */
.process-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: var(--progress, 0%);
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: height 2s ease;
}

.process-container.animate::after {
    height: 100%;
}

.process-step {
    background: rgba(10, 10, 10, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.75rem;
    border-radius: 12px;
    width: calc(50% - 30px);
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    transition: all 1.4s ease;
}

/* Position steps on alternating sides */
.process-step:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    transform: translateX(-50px);
}

.process-step:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    transform: translateX(50px);
}

/* Adjust circle positions for each side */
.process-step::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    top: 50%;
    transition: background-color 0.3s ease;
}

.process-step:nth-child(odd)::before {
    right: -36px;
    transform: translate(50%, -50%);
}

.process-step:nth-child(even)::before {
    left: -36px;
    transform: translate(-50%, -50%);
}

/* Add connecting lines */
.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #333;
    transition: background-color 0.3s ease;
}

.process-step:nth-child(odd)::after {
    right: -30px;
}

.process-step:nth-child(even)::after {
    left: -30px;
}

/* Active step styling */
.process-step.active {
    opacity: 1;
    transform: translateX(0);
}

.process-step.active::before,
.process-step.active::after {
    background: var(--accent-color);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.process-step p {
    color: #ccc;
    line-height: 1.6;
}


nav {
    background-color: #000;
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

nav > * {
    position: relative;
    z-index: 1;
}

.logo {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Ensure nav with header class works the same */
nav.header {
    background-color: #000;
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

nav.header > * {
    position: relative;
    z-index: 1;
}

/* Header Styling */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-color: black;
}

header {
    background-color: #000;
    background-image: url("gifs/stars.gif"), linear-gradient(to bottom, #a200ff 0%, #000 25%);
    background-position: center, center;
    background-repeat: repeat, no-repeat;
    background-size: 60% auto, cover;
    min-height: 600px;
    max-height: 800px;
    height: auto;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

header > * {
    position: relative;
    z-index: 2;
}

/* Static Section Styling */
.static-section {
    position: relative;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.static-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("gifs/stars.gif"), url("gifs/abstract.gif");
    background-position: center, center;
    background-repeat: repeat, no-repeat;
    background-size: 60% auto, cover;
    opacity: 0.1;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: -1;
}

/* Hero Section Styling */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 4rem 4rem;
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

/* Left Section (Text) */
.hero-text {
    flex: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.4rem;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-button {
    background-color: #a200ff;
    color: white;
    border: 1px solid transparent;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow', sans-serif;
    white-space: nowrap;
    box-sizing: border-box;
}


.cta-button:hover {
    transform: scale(1.05);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-secondary-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 1);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    white-space: nowrap;
    box-sizing: border-box;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    background: rgba(10, 10, 10, 1);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.highlight {
    padding: 0;
    text-align: center;
}


.highlight span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: 0.01em;
}

.highlight p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.hero-panel {
    display: grid;
    gap: 1.5rem;
    width: 95%;
    max-width: 95%;
    grid-template-rows: 1fr 1fr;
    position: relative;
    z-index: 10;
}

.panel-card {
    background: rgba(10, 10, 10, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: clamp(1.25rem, 1.75rem, 1.75rem);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

@media (min-width: 769px) {
    .panel-card {
        text-align: left;
    }
}

.panel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(162, 0, 255, 0.5);
    background: rgba(10, 10, 10, 1);
}

.panel-card:hover::before {
    opacity: 1;
}

.panel-card h4 {
    margin-bottom: clamp(0.5rem, 0.75rem, 0.75rem);
    color: #fff;
    font-size: clamp(1.1rem, 1.25rem, 1.25rem);
}

.panel-card p,
.panel-card li {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
}

.panel-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

.panel-card li {
    margin-bottom: 0.4rem;
}

/* Right Section (Image) */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-content {
    max-width: 100%;
    width: 80%; /* Control the image size */
    height: auto;
}

.mobile-hero {
    display: none;
    background-color: #000;
    background-image: url("gifs/stars.gif"), linear-gradient(to bottom, #a200ff 0%, #000 25%);
    background-position: center, center;
    background-repeat: repeat, no-repeat;
    background-size: 60% auto, cover;
    position: relative;
    min-height: 500px;
}

.mobile-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.mobile-hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
}

.mobile-hero-content .hero-eyebrow {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.mobile-hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.mobile-hero-content p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}


section {
    padding: 5rem 10%;
}

section > h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-size: 2.5rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: transform 1s, opacity 1.4s;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
}

footer {
    background-color: var(--primary-color);
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    color: #fff;
    padding: 3rem 10% 1rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: none;
}

.copyright-tag {
    text-align: center;
    padding: 1rem 0;
    background-color: #000;
    color: #fff;
    font-size: 0.875rem;
}

.copyright-tag p {
    margin: 0;
    opacity: 0.8;
}

.booking-section {
    background-color: #000;
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    padding: 5rem 10%;
    color: #fff;
    position: relative;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.booking-section > * {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
}

.booking-card {
    background: rgba(10, 10, 10, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-6px);
    border-color: rgba(162, 0, 255, 0.5);
    background: rgba(10, 10, 10, 1);
}

.booking-card:hover::before {
    opacity: 1;
}

.booking-card h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 2rem;
}

.booking-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-steps {
    display: grid;
    gap: 1rem;
}

.step-pill {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-pill span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-pill p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.clients-section {
    padding: 5rem 10%;
    background-color: #000;
    background-image: url("gifs/stars.gif");
    background-position: center;
    background-repeat: repeat;
    background-size: 60% auto;
    color: #fff;
    position: relative;
}

.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.clients-section > * {
    position: relative;
    z-index: 1;
}

.clients-content {
    max-width: 1400px;
    margin: 0 auto;
}

.clients-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.clients-header h2 {
    font-size: clamp(1.75rem, 2.5rem, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.clients-header p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

.clients-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.client-stat-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 1), rgba(20, 20, 20, 1));
    border: 2px solid rgba(162, 0, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(162, 0, 255, 0.1);
}

.client-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(162, 0, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.client-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(162, 0, 255, 0.5);
    background: linear-gradient(135deg, rgba(10, 10, 10, 1), rgba(25, 25, 25, 1));
    box-shadow: 0 8px 30px rgba(162, 0, 255, 0.2);
}

.client-stat-card:hover::before {
    opacity: 1;
}

.client-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.client-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.clients-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client-card-modern {
    background: rgba(10, 10, 10, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(162, 0, 255, 0.5);
    background: rgba(10, 10, 10, 1);
}

.client-card-modern:hover::before {
    opacity: 1;
}

.client-tag-modern {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(162, 0, 255, 0.15);
    border: 1px solid rgba(162, 0, 255, 0.3);
    border-radius: 20px;
}

.client-card-modern h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.client-card-modern p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

.slider-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

 

.booking-text {
    flex: 1;
}

.booking-text h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.booking-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.booking-calendar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.calendly-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.calendly-button:hover {
    transform: translateY(-5px);
}

.calendly-button i {
    font-size: 1.2rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Fix navbar positioning */
    nav.header {
        top: 0;
        left: 0;
        width: 100%;
    }
    
    /* Home page hero spacing - mobile only */
    .static-section {
        margin-top: 0;
        padding-top: 0;
        min-height: auto;
        max-height: none;
        position: relative;
    }
    
    header {
        margin-top: 0;
        padding-top: 0;
        min-height: auto;
        max-height: none;
        height: auto;
        position: relative;
    }
    
    .hero {
        padding-top: 5rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-section {
        order: 2;
        padding: 2rem 1rem;
    }
    
    .process-section h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Move timeline bar to the left on mobile */
    .process-container {
        padding-left: 2rem;
        padding-right: 0;
    }
    
    .process-container::before {
        left: 0 !important;
        transform: translateX(0) !important;
    }
    
    .process-container::after {
        left: 0 !important;
        transform: translateX(0) !important;
    }
    
    /* All steps align to the right on mobile */
    .process-step {
        width: calc(100% - 2rem) !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 1.25rem;
        transform: translateX(30px);
    }
    
    .process-step.active {
        transform: translateX(0) !important;
    }
    
    /* Circles on the left side */
    .process-step::before {
        left: -1.5rem !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
    }
    
    /* Lines connecting to left bar */
    .process-step::after {
        left: -1.5rem !important;
        right: auto !important;
        width: 1.5rem !important;
    }
    
    /* Remove odd/even differences on mobile */
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    .process-step:nth-child(odd)::before,
    .process-step:nth-child(even)::before {
        left: -1.5rem !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .process-step:nth-child(odd)::after,
    .process-step:nth-child(even)::after {
        left: -1.5rem !important;
        right: auto !important;
        width: 1.5rem !important;
    }
    
    .step-number {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    header .hero-panel {
        order: 3;
    }
    
    .hero-text {
        text-align: center;
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
    }
    
    .hero p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    /* Hide discovery/design/delivery boxes on mobile */
    .hero-highlights {
        display: none !important;
    }
    
    /* Hide hero-panel in original location - JS moves it (mobile only) */
    header .hero .hero-panel:not(.mobile-moved) {
        display: none !important;
    }
    
    /* Show hero-panel in new location after process section (mobile only) */
    .hero-panel.mobile-moved {
        display: grid !important;
        padding: 2rem 1.5rem;
        margin-top: 0;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .panel-card h4 {
        font-size: 1rem !important;
    }
    
    .panel-card p,
    .panel-card li {
        font-size: 0.85rem !important;
    }
    
    /* Buttons in triangular shape - Start a Project on top, other two below */
    .hero-actions {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0;
    }
    
    .cta-button {
        order: -1;
        width: auto;
        min-width: 200px;
        margin: 0 auto !important;
        margin-bottom: 0.5rem !important;
        display: inline-flex;
        justify-content: center;
        align-self: center;
    }
    
    .hero-secondary-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        margin: 0 auto;
    }
    
    .hero-secondary-actions .cta-secondary {
        width: auto;
        min-width: 140px;
        margin: 0;
        display: inline-flex;
    }
    
    .cta-button,
    .cta-secondary {
        width: auto;
        flex: 0 1 auto;
        min-width: fit-content;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Ensure content is visible above backgrounds */
    .static-section > *,
    header > *,
    .hero,
    .hero-text {
        position: relative;
        z-index: 10;
    }
}



