:root {
    --primary-color: #22c55e;
    --secondary-color: #10b981;
    --accent-color: #0d9488;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --primary-light: #dcfce7;
    --sky-blue: #baebff;
    --grey-silver: #f1f5f9;
    --green-grad: linear-gradient(135deg, #22c55e 0%, #0d9488 100%);
    --emerald-grad: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --purple-grad: var(--green-grad);
    --blue-grad: var(--green-grad);
    --success-green: #22c55e;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Heading Indicator */
.wavy-line {
    width: 40px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='10' viewBox='0 0 40 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5C5 5 5 1 10 1C15 1 15 5 20 5C25 5 25 1 30 1C35 1 35 5 40 5' stroke='%2322c55e' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    margin: 15px 0;
}

/* About Page Specific */
.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/hero-bg.png') center/cover no-repeat;
    border-bottom: 1px solid #e2e8f0;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    text-align: center;
    min-width: 150px;
}

.milestone-card {
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Features Page Tabs */
.feature-tabs .nav-link {
    border: none;
    background-color: #fff;
    color: #333;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    margin-right: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-tabs .nav-link:hover {
    color: var(--primary-color);
}

.feature-tabs .nav-link.active {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-radius: 4px 4px 0 0;
    box-shadow: none;
}

.feature-grid-card {
    background: #fff;
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-grid-card i {
    font-size: 4rem;
    color: #333;
    margin-bottom: 20px;
    display: block;
}

.feature-grid-card h5 {
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-grid-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.read-more-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.wavy-white {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='10' viewBox='0 0 40 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5C5 5 5 1 10 1C15 1 15 5 20 5C25 5 25 1 30 1C35 1 35 5 40 5' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

/* Client Cards */
.client-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.client-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.client-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.z-index-2 {
    z-index: 2;
}

.btn-danger {
    background-color: #d32f2f;
    border-color: #d32f2f;
}

.btn-danger:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Testimonials */
.testimonial-card {
    text-align: center;
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 30px;
}

.testimonial-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-box p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #cbd5e1;
    font-size: 1.5rem;
    opacity: 0.5;
}

.testimonial-author {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.author-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h6 {
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    color: #334155;
}

.testimonial-author p {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary-light {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.heading-line {
    width: 40px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='10' viewBox='0 0 40 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5C5 5 5 1 10 1C15 1 15 5 20 5C25 5 25 1 30 1C35 1 35 5 40 5' stroke='%2322c55e' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    margin-top: 15px;
}

.service-tab-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-header-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card-title {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.service-tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-tab-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

.service-tab-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.service-demo-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-demo-img:hover {
    transform: scale(1.02);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .social-links a {
    margin-left: 15px;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 100px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    font-size: 19px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.login-btn {
    border-radius: 50px;
}

/* App Promo Section */
.app-promo {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85) 0%, rgba(13, 148, 136, 0.85) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    perspective: 1000px;
}

.hero-image-tilt {
    max-width: 400px;
    transform: rotateX(10deg) rotateY(-15deg) rotateZ(5deg);
    filter: drop-shadow(20px 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-promo:hover .hero-image-tilt {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.hero-btn {
    background-color: var(--primary-color) !important;
    border: none !important;
    color: white !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 12px 30px !important;
}

.hero-btn:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

/* Hero Section */
.hero-carousel {
    height: 90vh;
    min-height: 600px;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.read-more {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-top: 10px;
}

/* App Section */
.app-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.mockup-container {
    position: relative;
    display: inline-block;
}

.app-mockup {
    max-width: 320px;
}

/* Services Page */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: white;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.service-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    top: 4px;
}

/* Service Items */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.service-item:hover .service-icon,
.service-item:hover p,
.service-item:hover h3,
.service-item:hover a {
    color: var(--white) !important;
}

/* Footer */
footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.dark-feature-list li {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dark-feature-list li i {
    color: #10b981;
    font-size: 1.2rem;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    text-align: center;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.pricing-features {
    padding: 30px 20px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #475569;
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.pricing-features li i.fa-check {
    color: #22c55e;
}

.pricing-features li i.fa-times {
    color: #ef4444;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
    background: #f8fafc;
}

.btn-pricing {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    width: 100%;
}

/* Plan Colors */
.bg-free {
    background-color: #7ABD4C !important;
}

.bg-security {
    background-color: #F5A623 !important;
}

.bg-management {
    background-color: #4A3292 !important;
}

.bg-accounting {
    background-color: #F7941D !important;
}

.bg-ultimate {
    background-color: #00AEEF !important;
}

.pricing-comparison {
    padding: 80px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8fafc;
}

.comparison-table i.fa-check {
    color: #22c55e;
}

.comparison-table i.fa-times {
    color: #ef4444;
}

/* Trusted Logos & Media Coverage */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.logo-grid img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    padding: 80px 0;
}

/* Redesign Specific Styles */
.grad-section {
    background: var(--purple-grad);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.feature-row {
    padding: 80px 0;
}

.feature-row:nth-child(even) {
    background-color: #f8fafc;
}

.feature-list-new {
    list-style: none;
    padding: 0;
}

.feature-list-new li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 1rem;
}

.feature-list-new li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #10b981;
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.image-card-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.image-card-shadow:hover {
    transform: translateY(-5px);
}

.dark-section {
    background: #1e293b;
    color: white;
    padding: 80px 0;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.app-grid-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.app-grid-item:hover img {
    transform: translateY(-5px);
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.indicator-dot.active {
    background-color: #fff;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bg-mint-light {
    background-color: #b9fbd15c !important;
}

.feature-grid-card-new {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.feature-grid-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Icon color variations */
.feature-grid-card-new:nth-child(8n+1) .feature-icon-circle {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.feature-grid-card-new:nth-child(8n+2) .feature-icon-circle {
    background-color: #d1fae5;
    color: #059669;
}

.feature-grid-card-new:nth-child(8n+3) .feature-icon-circle {
    background-color: #fce7f3;
    color: #db2777;
}

.feature-grid-card-new:nth-child(8n+4) .feature-icon-circle {
    background-color: #fed7aa;
    color: #ea580c;
}

.feature-grid-card-new:nth-child(8n+5) .feature-icon-circle {
    background-color: #dbeafe;
    color: #0284c7;
}

.feature-grid-card-new:nth-child(8n+6) .feature-icon-circle {
    background-color: #e9d5ff;
    color: #9333ea;
}

.feature-grid-card-new:nth-child(8n+7) .feature-icon-circle {
    background-color: #fecaca;
    color: #dc2626;
}

.feature-grid-card-new:nth-child(8n+8) .feature-icon-circle {
    background-color: #fef3c7;
    color: #d97706;
}

.feature-grid-card-new h5 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-grid-card-new p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-grid-card-new .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.feature-grid-card-new .btn-outline-secondary {
    border-color: #cbd5e1;
    color: #475569;
}

.feature-grid-card-new .btn-outline-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.feature-grid-item {
    margin-bottom: 30px;
}

.feature-grid-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 15px;
}

.feature-grid-item h5 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-grid-item p {
    color: #64748b;
    line-height: 1.5;
}

.text-primary {
    color: #3b82f6 !important;
}

@media (max-width: 991px) {
    .feature-grid-item {
        text-align: center;
    }
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-top: 20px;
    cursor: pointer;
}

.download-bar {
    background: #000;
    padding: 10px 0;
}

.download-bar img {
    height: 35px;
    margin: 0 10px;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}