/* --- THINKUBATOR THEME --- */

/* 1. VARIABLES & GLOBAL STYLES
-------------------------------------------------- */
:root {
    --color-yellow: #FFE066;
    --color-blue: #5BC0EB;
    --color-magenta: #F46036;
    --color-black: #1C1C1C;
    --color-dark-grey: #2a2a2a;
    --color-light-grey: #f4f4f4;
    --color-white: #ffffff;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Share Tech Mono', monospace;

    --header-height: 80px;
    --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(--color-light-grey);
    color: var(--color-dark-grey);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

a {
    color: var(--color-magenta);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-blue);
}

ul {
    list-style: none;
}

.section-padding {
    padding: 100px 0;
}

.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: 4px;
    background: linear-gradient(90deg, var(--color-magenta), var(--color-yellow));
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-primary);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-magenta);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* 2. HEADER & NAVIGATION
-------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-black);
    padding: 0.5rem 0;
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background-color: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-speed) ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-white);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-magenta));
    transition: width var(--transition-speed) ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 10px;
    transition: all var(--transition-speed) ease-in-out;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(28, 28, 28, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav nav ul {
    text-align: center;
}

.mobile-nav nav li {
    margin: 2rem 0;
}

.mobile-nav nav a {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
}

/* 3. HERO SECTION
-------------------------------------------------- */
.hero {
    background-color: var(--color-black);
    color: var(--color-white);
    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 {
    z-index: 2;
    position: relative;
}

.hero-title {
    color: var(--color-white);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.animated-text-container {
    display: inline-block;
    color: var(--color-yellow);
    position: relative;
    height: 1.2em;
    /* Matches line-height */
    vertical-align: bottom;
}

.animated-text {
    position: absolute;
    left: 0;
    opacity: 0;
    animation: animateText 9s infinite;
}

.animated-text:nth-child(1) {
    animation-delay: 0s;
}

.animated-text:nth-child(2) {
    animation-delay: 3s;
}

.animated-text:nth-child(3) {
    animation-delay: 6s;
}

@keyframes animateText {

    0%,
    25% {
        opacity: 1;
        transform: translateY(0);
    }

    33%,
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--color-magenta);
    top: 10%;
    left: 15%;
    animation: float 15s infinite ease-in-out alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--color-blue);
    bottom: 15%;
    right: 20%;
    animation: float 12s infinite ease-in-out alternate;
    animation-delay: -3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background-color: var(--color-yellow);
    bottom: 50%;
    left: 40%;
    animation: float 18s infinite ease-in-out alternate;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 60px) scale(1.2);
    }
}


/* 4. SERVICES SECTION
-------------------------------------------------- */
.services-section {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: all var(--transition-speed) ease;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-inner {
    transform: translateZ(20px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-magenta);
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    margin-bottom: 1rem;
}

/* 5. THOUGHT MACHINE SECTION
-------------------------------------------------- */
.thought-machine-section {
    background-color: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.thought-machine-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.thought-machine-content .section-title {
    color: var(--color-white);
    text-align: left;
}

.thought-machine-content .section-title::after {
    left: 0;
    transform: translateX(0);
}

.thought-machine-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.thought-machine-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gears-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gear {
    position: absolute;
    font-size: 10rem;
    color: var(--color-dark-grey);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease-out;
}

.gear i {
    display: block;
}

.gear-1 {
    top: 0;
    left: 10%;
    font-size: 12rem;
    color: var(--color-blue);
}

.gear-2 {
    top: 50%;
    left: 0;
    font-size: 8rem;
    color: var(--color-yellow);
    transform: translateY(-50%);
}

.gear-3 {
    bottom: 0;
    left: 30%;
    font-size: 15rem;
    color: var(--color-magenta);
}

.gear-4 {
    top: 20%;
    right: 0;
    font-size: 6rem;
    color: var(--color-light-grey);
}

.steam-puff {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.gears-container:hover .steam-puff {
    animation: puff 1s ease-out;
}

@keyframes puff {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* 6. TESTIMONIALS SECTION
-------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-wrapper {
    position: relative;
    height: 500px;
    width: 100%;
    margin-top: 4rem;
}

.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(91, 192, 235, 0.1);
    border: 2px solid var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(91, 192, 235, 0.5);
}

.bubble img {
    width: 60%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.bubble:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--color-white);
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--color-black);
}

#modal-body {
    text-align: center;
}

#modal-body p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

#modal-body .client-name {
    font-weight: bold;
    font-style: normal;
    color: var(--color-magenta);
}

#modal-body .client-company {
    font-style: normal;
    color: #777;
}

/* 7. PROCESS SECTION
-------------------------------------------------- */
.process-section {
    background-color: var(--color-light-grey);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-yellow), var(--color-magenta), var(--color-blue));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.process-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step:nth-child(odd) {
    left: 0;
}

.process-step:nth-child(even) {
    left: 50%;
}

.process-step:nth-child(odd) .process-content {
    text-align: right;
}

.process-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    right: -30px;
    background-color: var(--color-white);
    border: 4px solid var(--color-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-blue);
    transition: all 0.3s ease;
}

.process-step:nth-child(even) .process-icon {
    left: -30px;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    background-color: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-yellow);
}

.process-step:nth-child(2) .process-icon {
    border-color: var(--color-magenta);
    color: var(--color-magenta);
}

.process-step:nth-child(2):hover .process-icon {
    background-color: var(--color-magenta);
}

.process-step:nth-child(3) .process-icon {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
}

.process-step:nth-child(3):hover .process-icon {
    background-color: var(--color-yellow);
}

.process-step:nth-child(4) .process-icon {
    border-color: var(--color-black);
    color: var(--color-black);
}

.process-step:nth-child(4):hover .process-icon {
    background-color: var(--color-black);
}

.process-content {
    padding: 20px 30px;
    background-color: var(--color-white);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* 8. CTA SECTION
-------------------------------------------------- */
.cta-section {
    background-color: var(--color-blue);
    background-image: linear-gradient(45deg, var(--color-blue) 0%, var(--color-magenta) 100%);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.cta-container h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-container p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-container .btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.cta-container .btn-primary:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

/* 9. FOOTER
-------------------------------------------------- */
.footer {
    background-color: var(--color-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background-color: var(--color-magenta);
    border-color: var(--color-magenta);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-list a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--color-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-dark-grey);
    font-size: 0.9rem;
}


/* 10. SUBPAGES (LEGAL, CONTACT)
-------------------------------------------------- */
body.subpage {
    padding-top: var(--header-height);
}

.page-header {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-subtitle {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.8;
}

.breadcrumbs a {
    color: var(--color-yellow);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.legal-content .content-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light-grey);
}

.legal-content p {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-page-section {
    background-color: var(--color-light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
}

.contact-title {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(91, 192, 235, 0.2);
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
}

.contact-info-container {
    padding-left: 2rem;
    border-left: 1px solid #eee;
}

.contact-methods .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-methods .method-icon {
    font-size: 1.5rem;
    color: var(--color-magenta);
    width: 50px;
    height: 50px;
    background-color: var(--color-light-grey);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.method-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* Popup */
.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, visibility 0.3s;
}

.popup:target {
    visibility: visible;
    opacity: 1;
}

.popup-content {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    text-decoration: none;
}

.popup-content i.fa-check-circle {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 1rem;
}

.popup-content .btn {
    margin-top: 1.5rem;
}

/* 11. SCROLL ANIMATIONS
-------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* 12. RESPONSIVE DESIGN
-------------------------------------------------- */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .body-no-scroll {
        overflow: hidden;
    }

    .mobile-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .thought-machine-container {
        grid-template-columns: 1fr;
    }

    .thought-machine-visual {
        grid-row: 1;
        height: 300px;
    }

    .thought-machine-content {
        text-align: center;
    }

    .thought-machine-content .section-title {
        text-align: center;
    }

    .thought-machine-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-timeline::after {
        left: 30px;
    }

    .process-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .process-step:nth-child(even) {
        left: 0;
    }

    .process-step:nth-child(odd) .process-content {
        text-align: left;
    }

    .process-icon,
    .process-step:nth-child(even) .process-icon {
        left: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-container {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid #eee;
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about .social-links,
    .footer-col .footer-list {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .testimonials-wrapper {
        height: 400px;
    }
}