/*
Theme Name: Harvish Appz
Theme URI: https://harvishappz.com
Author: Harvish Appz Team
Author URI: https://harvishappz.com
Description: Modern, professional WordPress theme for digital agency
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: harvish-appz
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a1f3a;
    --accent-pink: #ff4d6d;
    --accent-yellow: #ffd60a;
    --accent-light-blue: #4dabf7;
    --accent-green: #51cf66;
    --accent-purple: #845ef7;
    --accent-orange: #ff922b;
    --text-dark: #1a1f3a;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: var(--white);
}


/* Background Decorative Elements - Dots */
body::before {
    content: '';
    position: fixed;
    top: 40%;
    left: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    background-image:
        /* Pink dots - 10% bigger */
        radial-gradient(circle, var(--accent-pink) 2.2px, transparent 2.2px),
        radial-gradient(circle, var(--accent-pink) 1.65px, transparent 1.65px),
        radial-gradient(circle, var(--accent-pink) 2.75px, transparent 2.75px),
        /* Yellow dots - 10% bigger */
        radial-gradient(circle, var(--accent-yellow) 2.2px, transparent 2.2px),
        radial-gradient(circle, var(--accent-yellow) 1.65px, transparent 1.65px),
        radial-gradient(circle, var(--accent-yellow) 2.75px, transparent 2.75px),
        /* Light Blue dots - 10% bigger */
        radial-gradient(circle, var(--accent-light-blue) 2.2px, transparent 2.2px),
        radial-gradient(circle, var(--accent-light-blue) 1.65px, transparent 1.65px),
        radial-gradient(circle, var(--accent-light-blue) 2.75px, transparent 2.75px),
        /* Green dots - 10% bigger */
        radial-gradient(circle, var(--accent-green) 2.2px, transparent 2.2px),
        radial-gradient(circle, var(--accent-green) 1.65px, transparent 1.65px),
        radial-gradient(circle, var(--accent-green) 2.75px, transparent 2.75px),
        /* Purple dots - 10% bigger */
        radial-gradient(circle, var(--accent-purple) 2.2px, transparent 2.2px),
        radial-gradient(circle, var(--accent-purple) 1.65px, transparent 1.65px),
        radial-gradient(circle, var(--accent-purple) 2.75px, transparent 2.75px),
        /* Orange dots - 10% bigger */
        radial-gradient(circle, var(--accent-orange) 2.2px, transparent 2.2px),
        radial-gradient(circle, var(--accent-orange) 1.65px, transparent 1.65px),
        radial-gradient(circle, var(--accent-orange) 2.75px, transparent 2.75px);
    background-size:
        150px 150px, 180px 180px, 200px 200px,
        120px 120px, 160px 160px, 140px 140px,
        170px 170px, 190px 190px, 130px 130px,
        110px 110px, 220px 220px, 100px 100px,
        210px 210px, 145px 145px, 175px 175px,
        155px 155px, 165px 165px, 185px 185px;
    background-position:
        15% 5%, 25% 25%, 12% 50%,
        85% 10%, 75% 30%, 88% 60%,
        35% 15%, 45% 40%, 38% 70%,
        65% 8%, 55% 28%, 62% 55%,
        5% 20%, 95% 35%, 8% 65%,
        92% 18%, 18% 45%, 82% 75%;
    opacity: 0.12;
    animation: floatBackground 25s ease-in-out infinite;
}

/* Background Decorative Elements - Triangles */
body::after {
    content: '';
    position: fixed;
    top: 40%;
    left: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0 L12 12 L0 12 Z' fill='%23ff4d6d'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0 L10 10 L0 10 Z' fill='%23ffd60a'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0 L14 14 L0 14 Z' fill='%234dabf7'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 11 11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 0 L11 11 L0 11 Z' fill='%2351cf66'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 0 L13 13 L0 13 Z' fill='%23845ef7'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 9 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 0 L9 9 L0 9 Z' fill='%23ff922b'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0 L15 15 L0 15 Z' fill='%23ff4d6d'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 0 L8 8 L0 8 Z' fill='%23ffd60a'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0 L16 16 L0 16 Z' fill='%234dabf7'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0 L12 12 L0 12 Z' fill='%2351cf66'/%3E%3C/svg%3E");
    background-size:
        13px 13px, 11px 11px, 15px 15px,
        12px 12px, 14px 14px, 10px 10px,
        17px 17px, 9px 9px, 18px 18px,
        13px 13px;
    background-position:
        20% 10%, 80% 18%, 15% 45%,
        85% 28%, 30% 58%, 70% 68%,
        10% 32%, 90% 50%, 25% 78%,
        75% 5%;
    background-repeat: no-repeat;
    opacity: 0.1;
    animation: floatBackground 30s ease-in-out infinite reverse;
}

@keyframes floatBackground {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
    }

    75% {
        transform: translateY(-25px) translateX(5px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#main-content {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.site-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    overflow: visible;
}

.header-content .btn-primary {
    flex-shrink: 0;
    min-width: fit-content;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.logo-image {
    display: block;
    object-fit: contain;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    z-index: auto !important;
}

.logo-with-text {
    max-height: 50px;
    max-width: 250px;
    width: auto;
    height: auto;
}

.logo-only {
    max-height: 40px;
    max-width: 40px;
    width: auto;
    height: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a,
.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.main-nav a:hover {
    color: var(--accent-pink);
}

/* Ensure button in nav is not affected by nav link styles */
.main-nav .btn-primary {
    color: var(--white) !important;
}

.main-nav .btn-primary:hover {
    color: var(--white) !important;
}

.main-nav .btn-primary span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    font-size: inherit !important;
    line-height: inherit !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    clip: auto !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap !important;
    overflow: visible !important;
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    text-overflow: clip !important;
}

.btn-primary span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 31, 58, 0.3);
}

.btn-accent {
    background: var(--accent-pink);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 14px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline span {
    display: inline-block;
}

.btn-outline .whatsapp-icon {
    fill: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline:hover .whatsapp-icon {
    fill: var(--white);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero-text h1 .highlight {
    color: var(--accent-pink);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.shape-yellow {
    width: 100px;
    height: 100px;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.shape-blue {
    width: 80px;
    height: 80px;
    background: var(--accent-light-blue);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--accent-yellow);
    opacity: 0.3;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--accent-pink);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon.orange {
    background: var(--accent-orange);
}

.service-icon.green {
    background: var(--accent-green);
}

.service-icon.pink {
    background: var(--accent-pink);
}

.service-icon.purple {
    background: var(--accent-purple);
}

.service-icon.blue {
    background: var(--accent-light-blue);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Statistics Section */
.stats-section {
    background: var(--primary-blue);
    padding: 80px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Projects Section */
.projects-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.3s;
    text-decoration: none;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--accent-pink);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Expert Section */
.expert-section {
    background: var(--light-bg);
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expert-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.expert-info h2 .highlight {
    color: var(--accent-pink);
}

.expert-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.expert-title {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.expert-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--accent-pink);
}

.expert-image {
    position: relative;
}

.expert-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Testimonials Section */
.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

/* Footer */
.site-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
}

.footer-logo .logo-image {
    max-height: 50px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.email-subscribe {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.email-submit {
    background: var(--accent-pink);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.email-submit:hover {
    transform: translateY(-2px);
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-contact p strong {
    color: var(--white);
    font-weight: 600;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--white);
}

.contact-email-label {
    margin-top: 15px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu a,
    .main-nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .btn-primary span,
    .btn-outline span {
        display: inline-block !important;
    }

    .btn-primary .whatsapp-icon,
    .btn-outline .whatsapp-icon {
        display: inline-block !important;
    }

    .hero-content,
    .expert-content,
    .testimonials-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-accent,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .logo {
        max-width: 200px;
    }

    .logo-image {
        max-height: 40px;
        max-width: 100%;
    }

    .logo-with-text {
        max-width: 180px;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-logo .logo-image {
        max-height: 40px;
        max-width: 180px;
    }
}