
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a73e8;
    --secondary-blue: #4285f4;
    --dark-blue: #0d47a1;
    --light-blue: #e8f0fe;
    --text-dark: #202124;
    --text-light: #5f6368;
    --white: #ffffff;
    --gray-100: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

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

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    height: 70px;
    margin-left: -15px;
}

.navbar-brand span {
    color: var(--dark-blue);
}

.navbar-brand i {
    font-size: 1.8rem;
    margin-right: 8px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px !important;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--light-blue);
    color: var(--secondary-blue) !important;
    font-weight: bold;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 6px 16px;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Mobile Menu */
.offcanvas {
    background-color: var(--white);
}

.offcanvas-header {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.offcanvas-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.offcanvas-title span {
    color: var(--dark-blue);
}

.offcanvas-title i {
    font-size: 1.5rem;
    margin-right: 8px;
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin: 4px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: var(--primary-blue);
    background-color: transparent;
    padding-left: 8px;
}

.mobile-download-btn {
    margin-top: 20px;
}

/* 🌐 Bilty Stats Section Styling (Blue Theme) */
  .bilty-stats-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
  }

  /* 💠 Card Design */
  .bilty-stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 0.75rem;
    border: 1px solid rgba(191, 219, 254, 0.8);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.05),
      0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: biltySlideUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(15px);
  }

  .bilty-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .bilty-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.12),
      0 2px 4px rgba(37, 99, 235, 0.08);
  }

  .bilty-stat-card:hover::before {
    transform: scaleX(1);
  }

  /* 🚚 Icon Style */
  .bilty-icon-wrap {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .bilty-icon-wrap i {
    font-size: 1.25rem;
    color: #1d4ed8;
    transition: all 0.3s ease;
  }

  .bilty-icon-wrap.bilty-download {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
  }

  .bilty-icon-wrap.bilty-download i {
    color: #1e40af;
  }

  .bilty-icon-wrap.bilty-transporter {
    background: linear-gradient(135deg, #e0f2fe 0%, #93c5fd 100%);
  }

  .bilty-icon-wrap.bilty-transporter i {
    color: #2563eb;
  }

  .bilty-stat-card:hover .bilty-icon-wrap {
    transform: scale(1.08);
  }

  /* 📊 Text Content */
  .bilty-number {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .bilty-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .bilty-subtext {
    font-size: 0.65rem;
    color: #475569;
    font-weight: 500;
  }

  /* 🌀 Animation */
@keyframes biltySlideUp {
from {
    opacity: 0;
    transform: translateY(15px);
}

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

.bilty-stat-card:nth-child(1) {
animation-delay: 0.1s;
}

.bilty-stat-card:nth-child(2) {
animation-delay: 0.15s;
}

.bilty-stat-card:nth-child(3) {
animation-delay: 0.2s;
}

.bilty-stat-card:nth-child(4) {
animation-delay: 0.25s;
}

.bilty-stat-card:nth-child(5) {
animation-delay: 0.3s;
}

.bilty-stat-card:nth-child(6) {
animation-delay: 0.35s;
}

/* 📱 Responsive */
@media (max-width: 768px) {
.bilty-stat-card {
    min-height: 110px;
    padding: 1rem 0.5rem;
}

.bilty-number {
    font-size: 1.1rem;
}

.bilty-label {
    font-size: 0.7rem;
}
}

@media (max-width: 576px) {
.bilty-stat-card {
    min-height: 100px;
    padding: 0.75rem 0.4rem;
}

.bilty-icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 0.4rem;
}

.bilty-number {
    font-size: 1rem;
}

.bilty-label {
    font-size: 0.65rem;
}
}

/* Section Common Styles */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-blue);
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.05rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-btns .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.offcanvas.offcanvas-end {
    width: 80% !important;
    z-index: 9999 !important;
}

.hero-btns .btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
}

.hero-btns .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
    background-color: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background-color: var(--gray-100);
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-list i {
    color: var(--primary-blue);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Solutions Section */
.solutions-section {
    background-color: var(--white);
}

.solution-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.solution-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-100);
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.author-info p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-blue);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.pricing-price span {
    text-decoration: line-through;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-price small {
    margin-left: 10px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1em;
}

.pricing-period {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-blue);
    margin-right: 8px;
}

/* Screenshots Section */
.screenshots-section {
    background-color: var(--gray-100);
}

.screenshot-item {
    margin-bottom: 30px;
    text-align: center;
}

.screenshot-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.screenshot-caption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.download-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-section p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: var(--text-dark);
}

.download-btns .btn {
    font-size: 1rem;
    padding: 10px 24px;
    margin: 0 8px 10px;
    border-radius: 6px;
}

.download-btns .btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
}

.download-btns .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.contact-details p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.contact-details span {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 12px;
}

.form-control {
    padding: 10px 15px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer h6 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer p,
.footer a {
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: blue;
}

a {
    color: white;
}

.footer-download {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 70px 0 50px;
    }

    .hero-section h1 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .download-btns .btn {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto 10px;
    }

    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 40px 0;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .feature-card,
    .pricing-card {
        padding: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8, #0b5ed7);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.about-title {
    text-align: left !important;
}

.about-description {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-stats {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1a73e8, #0b5ed7);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.btn-outline-primary {
    border: 2px solid #1a73e8;
    color: #1a73e8;
}

.btn-outline-primary:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
}

/* Visual Section */
.about-visual {
    position: relative;
    padding: 2rem;
}

.main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.1rem;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0 !important;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-visual {
        padding: 1rem;
        margin-top: 2rem;
    }

    .floating-card {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
    }

    .card-1,
    .card-2,
    .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: inline-block;
        margin: 0.5rem;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .feature-item h5 {
        font-size: 0.9rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .about-stats {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

.navbar-toggler-icon {
    width: 2em !important;
}

.logo {
    width: 170px;
    height: 120px;
}

.how-it-works-section {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #1a73e8, #0b5ed7);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: #6b7280;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Step Cards */
    .step-card {
        background: white;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        position: relative;
        z-index: 2;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }

    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
    }

    .step-number {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #1a73e8, #0b5ed7);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #e8f0fe, #dbeafe);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .step-card:hover .step-icon {
        transform: scale(1.1) rotate(5deg);
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    }

    .step-icon i {
        font-size: 2rem;
        color: #1a73e8;
    }

    .step-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .step-description {
        font-size: 0.95rem;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* Step 1 - Download Buttons */
    .step-actions {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .store-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        color: #374151;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .store-btn:hover {
        background: #1a73e8;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    }

    .store-btn i {
        font-size: 1.1rem;
    }

    /* Step 2 - Features */
    .step-features {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-tag {
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Step 3 - Stats */
    .step-stats {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
        color: #6b7280;
        font-weight: 500;
    }

    /* Progress Line */
    .progress-line {
        position: absolute;
        top: 50%;
        left: 10%;
        right: 10%;
        height: 3px;
        background: #e2e8f0;
        z-index: 1;
        transform: translateY(-50%);
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #1a73e8, #0b5ed7);
        width: 100%;
        border-radius: 3px;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .step-card {
            padding: 2rem 1.5rem;
            margin-bottom: 2rem;
        }

        .progress-line {
            display: none;
        }

        .cta-box {
            padding: 2rem 1.5rem;
        }

        .cta-title {
            font-size: 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 250px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 1.5rem;
        }

        .step-card {
            padding: 1.5rem 1rem;
        }

        .step-icon {
            width: 60px;
            height: 60px;
        }

        .step-icon i {
            font-size: 1.5rem;
        }

        .step-title {
            font-size: 1.1rem;
        }

        .step-description {
            font-size: 0.9rem;
        }
    }