/*
================================================
Vortex Interface Theme for Staton Media
================================================
*/

/* --- 1. Root Variables & Reset --- */
:root {
    --primary-color: #9f50ff;
    --secondary-color: #ff8c00;
    --bg-dark: #0a0a1a;
    --bg-medium: #1a1a2e;
    --bg-light: #2a2a4e;
    --text-light: #f0f0f5;
    --text-medium: #a0a0c0;
    --text-dark: #707090;
    --border-color: rgba(159, 80, 255, 0.2);
    --glow-primary: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 15px var(--primary-color);
    --glow-secondary: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-family);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* --- 2. General & Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #8a33f1;
    border-color: #8a33f1;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(159, 80, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.has-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-30deg);
    transition: left 0.8s ease;
}

.has-shine:hover::before {
    left: 150%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- 3. Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    margin-bottom: 20px;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-logo img {
    filter: invert(1);
    max-width: 100px;
}

.preloader-bar {
    width: 150px;
    height: 4px;
    background-color: var(--bg-medium);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: loading 2s ease-out forwards;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* --- 4. Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--border-color);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    filter: invert(1);
    transition: transform var(--transition-speed) ease;
}

.logo a:hover img {
    transform: rotate(-10deg) scale(1.1);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* --- 5. Hero & Page Header Sections --- */
.hero-section,
.page-header-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-header-section {
    min-height: auto;
    padding: 180px 0 80px;
}

.vortex-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(159, 80, 255, 0.15) 0%, rgba(10, 10, 26, 0) 60%);
    animation: spin 30s linear infinite;
    z-index: -1;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content,
.page-header-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    text-shadow: 0 0 15px rgba(159, 80, 255, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 1.5rem auto 2.5rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- 6. Services Section --- */
.services-section {
    background-color: var(--bg-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: transparent;
    perspective: 1000px;
    min-height: 280px;
}

.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;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--bg-light), var(--bg-medium));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-back {
    transform: rotateY(180deg);
    background: var(--primary-color);
    color: #fff;
}

.service-card-back p {
    color: #fff;
}

.service-card-back h3 {
    color: #fff;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-card {
    background: #fff;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-card:hover {
    color: var(--secondary-color);
}


/* --- 7. About Section --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(159, 80, 255, 0.2), transparent);
    z-index: 1;
}

.about-image img {
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-features {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.about-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* --- 8. ROI Calculator Section --- */
.roi-calculator-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q 25 25 50 50 T 100 50" stroke="%231a1a2e" fill="none" stroke-width="2"/><path d="M0 60 Q 25 35 50 60 T 100 60" stroke="%231a1a2e" fill="none" stroke-width="2"/></svg>'), var(--bg-dark);
    background-size: cover;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: var(--bg-medium);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.roi-form .form-group {
    margin-bottom: 2rem;
}

.roi-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--bg-medium);
    transition: background-color 0.3s;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--bg-medium);
}

input[type="range"]:hover::-webkit-slider-thumb {
    background: var(--secondary-color);
}

.range-value {
    display: inline-block;
    margin-left: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.roi-results {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.result-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.result-label {
    display: block;
    color: var(--text-medium);
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.result-item.highlight .result-value {
    color: var(--secondary-color);
    text-shadow: var(--glow-secondary);
}

.roi-results .disclaimer {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 1rem;
}


/* --- 9. Testimonials Section --- */
.testimonials-section {
    background-color: var(--bg-medium);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 0;
    color: var(--text-light);
}

.author-info span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.slider-arrow {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
}

.slider-arrow#prevBtn {
    left: 0;
}

.slider-arrow#nextBtn {
    right: 0;
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* --- 10. CTA Section --- */
.cta-wrapper {
    background: linear-gradient(135deg, var(--primary-color), #6d28d9);
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 20px 40px rgba(159, 80, 255, 0.3);
}

.cta-wrapper h2 {
    color: #fff;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.cta-wrapper .btn-primary {
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-wrapper .btn-primary:hover {
    background: var(--bg-dark);
    color: #fff;
    border-color: #fff;
}

/* --- 11. Footer --- */
.footer {
    background-color: var(--bg-medium);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 40px;
}

.footer-about .footer-logo img {
    height: 60px;
    filter: invert(1);
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-medium);
}

.footer-links ul li a:hover {
    padding-left: 5px;
}

.footer-contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--primary-color);
}

.footer-contact-info a {
    color: var(--text-medium);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    color: var(--text-dark);
}

/* --- 12. Contact Page Specifics --- */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--bg-medium);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact-info-block h2 {
    margin-bottom: 1.5rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-detail-item h3 {
    margin-bottom: 0.25rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-family);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(159, 80, 255, 0.3);
}

.contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239f50ff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* --- 13. Legal Pages --- */
.legal-page-section .container {
    max-width: 800px;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1.5rem;
}

/* --- 14. Popup --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-medium);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* --- 15. Scroll & Load Animations --- */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animation].is-visible {
    opacity: 1;
}

[data-animation="fade-in"] {
    transform: translateY(0);
}

[data-animation="fade-in-up"] {
    transform: translateY(50px);
}

[data-animation="fade-in-up"].is-visible {
    transform: translateY(0);
}

[data-animation="fade-in-right"] {
    transform: translateX(-50px);
}

[data-animation="fade-in-right"].is-visible {
    transform: translateX(0);
}

[data-animation="fade-in-left"] {
    transform: translateX(50px);
}

[data-animation="fade-in-left"].is-visible {
    transform: translateX(0);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}

[data-animation="zoom-in"].is-visible {
    transform: scale(1);
}

/* --- 16. Live Chat Widget --- */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(159, 80, 255, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.live-chat-widget:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--secondary-color);
}

/* --- 17. Responsive Design --- */
@media (max-width: 992px) {
    .header-actions .btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-medium);
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-speed) ease-in-out;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-text-content {
        order: -1;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .roi-results {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        padding: 140px 0 80px;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .testimonial-slider-wrapper {
        padding: 0;
    }

    .slider-controls {
        display: none;
        /* Simpler navigation on mobile */
    }

    .testimonial-slider {
        height: auto;
    }

    .testimonial-slide {
        position: static;
        opacity: 1;
        transform: none;
        margin-bottom: 2rem;
    }

    .testimonial-slide:last-child {
        margin-bottom: 0;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .nav {
        width: 100%;
    }
}