        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #e8c468 0%, #d4a747 100%);
            padding: 40px 50px 80px 50px;
            min-height: 600px;
        }

        .hero-outer-container {
            background: #f8f5ed;
            border-radius: 20px;
            padding: 0;
            width: 100%;
        }

        /* Fixed Navbar Styles */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 50px;
            background: transparent;
            border-bottom: none;
            position: relative;
            z-index: 100;
            flex-wrap: wrap;
            gap: 20px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            order: 1;
            flex-shrink: 0;
        }

        .navbar-logo img {
            height: 60px;
            width: 60px;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
            margin: 0;
            padding: 0;
            order: 2;
        }

        .nav-menu a {
            text-decoration: none;
            color: #5a7184;
            font-size: 18px;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #2c5f7f;
        }

        .contact-btn-nav {
            background: #2c5f7f;
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.3s;
            font-size: 16px;
        }

        .contact-btn-nav:hover {
            background: #1e4a66;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
            order: 3;
            flex-wrap: wrap;
        }

        .nav-right a {
            text-decoration: none;
            color: #5a7184;
            font-size: 16px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-right a:hover {
            color: #2c5f7f;
        }

        .nav-right a:hover {
            color: #2c5f7f;
        }

        /* Hero Content */
        .hero-container {
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 56px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .hero-content .highlight {
            color: #2c5f7f;
        }

        .hero-content p {
            font-size: 20px;
            color: #666;
            margin: 30px 0 40px 0;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #2c5f7f;
            color: white;
        }

        .btn-primary:hover {
            background: #1e4a66;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: #2c5f7f;
            border: 2px solid #2c5f7f;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            background: #2c5f7f;
            color: white;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 900px;
            height: auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar {
                padding: 20px 30px;
            }

            .navbar-logo img {
                height: 56px;
                width: 56px;
            }

            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 16px;
            }

            .contact-btn-nav {
                padding: 10px 25px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                gap: 30px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-content h1 {
                font-size: 44px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }
        }

        @media (max-width: 900px) {
            .navbar {
                padding: 12px 20px;
                gap: 15px;
            }

            .navbar-logo {
                order: 1;
                flex-shrink: 0;
            }

            .navbar-logo img {
                height: 50px;
                width: 50px;
            }

            .nav-menu {
                order: 2;
                gap: 15px;
                display: none;
            }

            .nav-menu a {
                font-size: 14px;
            }

            .nav-right {
                order: 3;
                gap: 20px;
                flex-wrap: wrap;
            }

            .nav-right a {
                font-size: 14px;
            }

            .contact-btn-nav {
                padding: 8px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 20px;
            }

            .navbar {
                padding: 10px 12px;
                gap: 8px;
                justify-content: space-between;
                flex-wrap: nowrap;
            }

            .navbar-logo {
                order: 1;
                flex-shrink: 0;
            }

            .navbar-logo img {
                height: 45px;
                width: 45px;
            }

            .nav-menu {
                order: 2;
                gap: 12px;
                display: none;
            }

            .nav-menu a {
                font-size: 13px;
            }

            .nav-right {
                order: 3;
                gap: 15px;
                flex-wrap: nowrap;
                justify-content: flex-end;
                flex-shrink: 1;
            }

            .nav-right a {
                font-size: 12px;
                white-space: nowrap;
            }

            .contact-btn-nav {
                padding: 6px 10px;
                font-size: 11px;
            }

            .hero-container {
                padding: 30px 20px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 18px;
                margin: 25px 0 30px 0;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .navbar {
                padding: 12px 10px;
            }

            .navbar-logo img {
                height: 44px;
                width: 44px;
            }

            .nav-menu {
                gap: 8px;
            }

            .nav-menu a {
                font-size: 13px;
            }

            .contact-btn-nav {
                padding: 7px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 15px;
            }

            .hero-outer-container {
                border-radius: 10px;
            }

            .navbar {
                padding: 10px;
                gap: 8px;
            }

            .navbar-logo img {
                height: 40px;
                width: 40px;
            }

            .nav-menu {
                gap: 6px;
            }

            .nav-menu a {
                font-size: 12px;
            }

            .contact-btn-nav {
                padding: 6px 10px;
                font-size: 12px;
            }

            .hero-container {
                padding: 25px 15px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 16px;
                margin: 20px 0 25px 0;
            }

            .btn {
                padding: 12px 25px;
                font-size: 16px;
            }
        }

.hero-container {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content .highlight {
    color: #2c5f7f;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin: 30px 0 40px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2c5f7f;
    color: white;
}

.btn-primary:hover {
    background: #1e4a66;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #2c5f7f;
    border: 2px solid #2c5f7f;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #2c5f7f;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features-section {
    padding: 80px 50px;
    background: white;
    text-align: center;
}

.features-section h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
}

.features-section h2 .highlight {
    color: #2c5f7f;
}

.features-section > p {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.features-section .tagline {
    font-size: 22px;
    color: #333;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.features-section .tagline-highlight {
    color: #2c5f7f;
    font-weight: 600;
}

/* Key Features Section */
.key-features-section {
    padding: 80px 50px;
    background: #2c5f7f;
    text-align: center;
}

.key-features-section h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 60px;
    font-weight: 600;
}

.key-features-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.key-features-slider {
    flex: 1;
    overflow: hidden;
}

.features-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.feature-box {
    flex: 0 0 calc(33.333% - 20px);
    background: #f8f5ed;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.feature-box h3 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 40px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 60px;
}

.feature-image {
    width: 100%;
    height: 300px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.slider-btn {
    background: white;
    color: #2c5f7f;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #1e4a66;
    color: white;
    transform: scale(1.1);
}

/* What We Offer Section */
.what-we-offer-section {
    background: linear-gradient(135deg, #f9f5f0 0%, #ffffff 100%);
    padding: 80px 40px;
}

.offer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.offer-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.offer-card-item {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.offer-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f7b500, #2c5f7f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #f7b500;
}

.offer-card-item:hover::before {
    opacity: 1;
}

.offer-card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.offer-card-item:hover .offer-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.offer-card-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 12px;
    margin-top: 0;
    letter-spacing: -0.3px;
}

.offer-card-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.offer-grid {
    display: none;
}

.offer-card {
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive styles for What We Offer Section */
@media (max-width: 1200px) {
    .offer-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .what-we-offer-section {
        padding: 60px 20px;
    }

    .offer-header h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .offer-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .offer-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .offer-card-item {
        padding: 24px 20px;
    }

    .offer-card-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .offer-card-item h3 {
        font-size: 18px;
    }

    .offer-card-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .offer-header h2 {
        font-size: 26px;
    }

    .offer-subtitle {
        font-size: 13px;
    }

    .offer-card-item {
        padding: 20px 16px;
    }

    .offer-card-icon {
        font-size: 40px;
    }

    .offer-card-item h3 {
        font-size: 16px;
    }
}

/* Logos Section Styling */

.app-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.app-demo-container {
    max-width: 1400px;
    margin: 0 auto 80px auto;
}

.app-demo-header {
    text-align: center;
    margin-bottom: 40px;
}

.app-demo-header h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.app-demo-header p {
    font-size: 16px;
    color: #666;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.screenshot-card {
    text-align: center;
}

.phone-mockup {
    background: #333;
    border-radius: 30px;
    padding: 15px 10px;
    margin: 0 auto 15px auto;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.screen-header {
    background: #f8f5ed;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #333;
}

.screen-content {
    padding: 20px 15px;
}

.screen-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.feature-item {
    background: #f8f5ed;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
    color: #333;
}

.total-box {
    background: #2c5f7f;
    color: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.demo-btn {
    display: inline-block;
    background: #2c5f7f;
    color: white;
    padding: 5px 10px; /* Reduced padding */
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px; /* Reduced font size */
    font-weight: 500;
    transition: background 0.3s ease;
}

.demo-btn:hover {
    background: #1e4a66;
}

.order-status {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 5px;
}

.status-active {
    background: #2c5f7f;
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 11px;
    flex: 1;
}

.status-pending {
    background: #e0e0e0;
    color: #666;
    padding: 8px;
    border-radius: 5px;
    font-size: 11px;
    flex: 1;
}

.stat-card {
    background: #f8f5ed;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.order-card {
    background: #f8f5ed;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: left;
}

.order-card p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #333;
}

.accept-btn {
    background: #2c5f7f;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
}

.screenshot-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Client & Partner Logos Section */
.clients-section {
    padding: 80px 50px;
    background: #f8f5ed;
    text-align: center;
}

.clients-section h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.clients-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.logos-grid {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logos-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.1s linear; /* Smooth continuous scrolling */
    will-change: transform; /* Performance optimization */
}

.logo-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px; /* Fixed width for consistent scrolling */
    flex-shrink: 0; /* Prevent shrinking */
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    text-align: center;
}

.logo-placeholder span {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.logo-placeholder p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 50px;
    background: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f5ed;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 40px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #e8c468 0%, #f5d87a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-text {
    color: #333;
}

.why-choose-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.why-choose-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-list {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.why-choose-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.why-choose-list h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c5f7f;
    font-weight: 700;
    text-align: center;
}

.why-choose-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-list li {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f5ed;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2c5f7f;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.why-choose-list li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-list li:hover::before {
    transform: scaleY(1);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #2c5f7f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    font-weight: bold;
}

/* Footer Section */
.footer {
    background: #2c5f7f;
    color: white;
    padding: 40px 50px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8f5ed;
}

.footer p, .footer a {
    font-size: 16px;
    color: #f8f5ed;
    line-height: 1.6;
    text-decoration: none;
}

.footer a:hover {
    color: #d4a747;
}

/* Footer Links */
.footer-about a {
    display: inline-block;
    margin-right: 15px;
    font-size: 16px;
    color: #f8f5ed;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-about a:hover {
    color: #d4a747;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #f8f5ed;
    padding-top: 20px;
    font-size: 14px;
}

/* Play Store Links Section */
.playstore-section {
    padding: 60px 50px;
    background: #f8f5ed;
    text-align: center;
}

.playstore-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.playstore-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.playstore-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.playstore-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.playstore-link img {
    width: 40px;
    height: 40px;
}

.playstore-link span {
    font-size: 18px;
    color: hsl(203, 49%, 34%);
    font-weight: 500;
}

/* Book a Free Demo Section */
.demo-section {
    padding: 60px 50px;
    background: #f8f5ed;
    text-align: center;
}

.demo-section h2 {
    font-size: 36px;
    color: #2c5f7f;
    margin-bottom: 20px;
    font-weight: 600;
}

.demo-btn {
    display: inline-block;
    background: #2c5f7f;
    color: white;
    padding: 20px 35px; /* Reduced padding */
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px; /* Reduced font size */
    font-weight: 500;
    transition: background 0.3s ease;
}

.demo-btn:hover {
    background: #1e4a66;
}

/* Contact Information Section */
.contact-info {
    background: #4a148c;
    color: white;
    padding: 40px 50px;
    text-align: left;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.contact-item p {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Get in Touch Section */
.get-in-touch {
    background: #f3e5f5;
    padding: 40px 50px;
    text-align: center;
}

.touch-container h2 {
    font-size: 28px;
    color: #4a148c;
    margin-bottom: 20px;
}

.touch-container p {
    font-size: 16px;
    color: #4a148c;
    margin-bottom: 30px;
}

.touch-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.option h3 {
    font-size: 18px;
    color: #4a148c;
    margin-bottom: 10px;
}

.option p {
    font-size: 14px;
    color: #4a148c;
}

/* About Us Section Styles */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
    font-size: 2.8rem;
    color: #2c5f7f;
    text-align: center;
    margin-bottom: 25px;
}

.about-section h2 {
    font-size: 2rem;
    color: #2c5f7f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 40px;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Add spacing between sections */
.about-section p + h2 {
    margin-top: 40px;
}

/* About Us Tagline Styles */
.about-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        padding: 50px 40px;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 30px 30px 60px 30px;
    }
    
    .hero-outer-container {
        border-radius: 15px;
    }
    
    .navbar {
        padding: 20px 30px;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .contact-btn-nav {
        padding: 10px 25px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image svg {
        max-width: 400px;
    }
    
    .features-section h2 {
        font-size: 36px;
    }
    
    .key-features-section {
        padding: 60px 20px;
    }
    
    .key-features-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .features-container {
        gap: 20px;
    }
    
    .feature-box {
        flex: 0 0 calc(50% - 10px);
        padding: 30px 20px;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .feature-box h3 {
        font-size: 16px;
        min-height: 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .why-choose-section {
        padding: 80px 40px;
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-choose-text h2 {
        font-size: 40px;
    }
    
    .why-choose-text p {
        font-size: 18px;
    }
    
    .why-choose-list h3 {
        font-size: 28px;
    }
    
    .why-choose-list li {
        font-size: 18px;
    }
}

/* ===== TABLET RESPONSIVE DESIGN (769px to 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet Navbar - Keep in Row */
    .navbar {
        padding: 12px 15px;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-logo {
        order: 1;
        flex: 0 0 auto;
    }

    .navbar-logo img {
        height: 50px;
        width: 50px;
    }

    .nav-menu {
        order: 2;
        flex: 1 1 auto;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        display: flex !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        display: flex;
    }

    .nav-menu a {
        font-size: 12px;
        padding: 6px 10px;
        color: #5a7184;
        text-decoration: none;
        white-space: nowrap;
    }

    .contact-btn-nav {
        order: 3;
        flex: 0 0 auto;
        padding: 8px 15px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 15px;
    }
    
    .navbar {
        display: flex !important;
        padding: 15px 10px !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
    }

    .navbar-logo {
        order: 1;
        flex: 0 0 auto;
        min-width: 45px;
        margin-bottom: 8px;
    }
    
    .navbar-logo img {
        height: 45px;
        width: 45px;
    }

    .nav-menu {
        order: 2;
        flex: 1 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        list-style: none !important;
        align-items: center;
    }

    .nav-menu li {
        display: flex !important;
        flex-shrink: 0;
        list-style: none !important;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap;
        color: #5a7184;
        text-decoration: none;
        border-radius: 3px;
        transition: all 0.3s;
        display: inline-block !important;
    }

    .nav-menu a:hover {
        background: #f0f0f0;
        color: #2c5f7f;
    }
    
    .contact-btn-nav {
        order: 3;
        flex: 0 0 auto;
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        background: #2c5f7f;
        color: white;
        border-radius: 3px;
        margin-left: 0;
        margin-top: 4px;
    }
    
    .hero-container {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin: 25px 0 30px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image svg {
        max-width: 300px;
    }
    
    .features-section {
        padding: 50px 20px;
    }
    
    .features-section h2 {
        font-size: 28px;
    }
    
    .features-section > p {
        font-size: 18px;
    }
    
    .features-section .tagline {
        font-size: 20px;
    }
    
    .key-features-section {
        padding: 50px 15px;
    }
    
    .key-features-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .key-features-wrapper {
        gap: 10px;
    }
    
    .features-container {
        gap: 15px;
    }
    
    .feature-box {
        flex: 0 0 calc(100% - 15px);
        padding: 25px 15px;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .feature-box h3 {
        font-size: 15px;
        min-height: 45px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .what-we-offer-section {
        padding: 60px 20px;
    }
    
    .what-we-offer-section h2 {
        font-size: 32px;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-icon {
        font-size: 40px;
    }
    
    .offer-card h3 {
        font-size: 18px;
    }
    
    .app-subtitle {
        font-size: 16px;
    }
    
    .app-demo-header h3 {
        font-size: 26px;
    }
    
    .app_screenshots {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .phone-mockup {
        max-width: 200px;
    }
    
    .phone-screen {
        min-height: 350px;
    }
    
    .clients-section {
        padding: 60px 20px;
    }
    
    .clients-section h2 {
        font-size: 32px;
    }
    
    .clients-subtitle {
        font-size: 16px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .logo-card {
        padding: 25px 15px;
    }
    
    .logo-placeholder span {
        font-size: 35px;
    }
    
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-section h2 {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-avatar {
        font-size: 35px;
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .why-choose-section {
        padding: 60px 20px;
    }
    
    .why-choose-container {
        gap: 40px;
    }
    
    .why-choose-left {
        gap: 25px;
    }
    
    .why-choose-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .why-choose-text p {
        font-size: 17px;
    }
    
    .why-choose-list {
        padding: 30px 25px;
    }
    
    .why-choose-list h3 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .why-choose-list ul {
        gap: 15px;
    }
    
    .why-choose-list li {
        font-size: 17px;
        padding: 12px;
    }
    
    .check-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 15px;
    }
    
    .hero-outer-container {
        border-radius: 10px;
    }
    
    .navbar {
        padding: 15px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .contact-btn-nav {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .hero-container {
        padding: 25px 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin: 20px 0 25px 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .hero-image svg {
        max-width: 250px;
        height: auto;
    }
    
    .features-section {
        padding: 40px 15px;
    }
    
    .features-section h2 {
        font-size: 24px;
    }
    
    .features-section > p {
        font-size: 16px;
    }
    
    .features-section .tagline {
        font-size: 18px;
    }
    
    .key-features-section {
        padding: 40px 10px;
    }
    
    .key-features-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .what-we-offer-section {
        padding: 50px 15px;
    }
    
    .what-we-offer-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .offer-card {
        padding: 25px 20px;
    }
    
    .offer-icon {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .offer-card h3 {
        font-size: 17px;
    }
    
    .app-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .app-demo-container {
        margin-bottom: 50px;
    }
    
    .app-demo-header h3 {
        font-size: 22px;
    }
    
    .app-demo_header p {
        font-size: 14px;
    }
    
    .app-screenshots {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .phone-mockup {
        max-width: 280px;
    }
    
    .phone-screen {
        min-height: 420px;
    }
    
    .clients-section {
        padding: 50px 15px;
    }
    
    .clients-section h2 {
        font-size: 26px;
    }
    
    .clients-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .logo-card {
        padding: 20px 15px;
    }
    
    .logo-placeholder span {
        font-size: 30px;
    }
    
    .testimonials-section {
        padding: 50px 15px;
    }
    
    .testimonials-section h2 {
        font-size: 26px;
    }
    
    .testimonials-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .stars {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .author-avatar {
        font-size: 30px;
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 14px;
    }
    
    .author-info p {
        font-size: 12px;
    }
    
    .why-choose-section {
        padding: 50px 15px;
    }
    
    .why-choose-container {
        gap: 30px;
    }
    
    .why-choose-left {
        gap: 20px;
    }
    
    .why-choose-text h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .why-choose-text p {
        font-size: 16px;
    }
    
    .why-choose-list {
        padding: 25px 20px;
    }
    
    .why-choose-list h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .why-choose-list ul {
        gap: 12px;
    }
    
    .why-choose-list li {
        font-size: 16px;
        padding: 10px;
    }
    
    .check-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
}

/* ===== TABLET RESPONSIVE DESIGN (768px to 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        padding: 30px 25px 50px 25px;
        min-height: auto;
    }

    .hero-container {
        padding: 40px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 16px;
        width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* Features Section */
    .features-section {
        padding: 50px 30px;
    }

    .features-section h2 {
        font-size: 36px;
    }

    .features-section > p {
        font-size: 18px;
    }

    /* Key Features */
    .key-features-section {
        padding: 50px 30px;
    }

    .key-features-section h2 {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .feature-box {
        flex: 0 0 calc(50% - 15px);
    }

    /* What We Offer */
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .offer-icon {
        font-size: 40px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Why Choose Us */
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-text h2 {
        font-size: 36px;
    }

    .why-choose-list h3 {
        font-size: 28px;
    }

    /* Footer */
    .footer-container {
        justify-content: center;
        gap: 40px;
    }

    .footer-about, .footer-links, .footer-contact {
        flex: 1;
        text-align: center;
    }
}

/* ===== MOBILE RESPONSIVE DESIGN (Below 768px) ===== */
@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-size: 14px;
    }

    /* Hero Section Mobile */
    .hero-section {
        background: linear-gradient(135deg, #e8c468 0%, #d4a747 100%);
        padding: 15px 10px 30px 10px;
        min-height: auto;
    }

    .hero-outer-container {
        border-radius: 12px;
    }

    .navbar {
        padding: 15px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .navbar-logo img {
        height: 50px;
        width: 50px;
    }

    .nav-menu {
        display: none;
    }

    .contact-btn-nav {
        /* width: 100%; */
        padding: 10px 15px;
        font-size: 14px;
    }

    .hero-container {
        padding: 25px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        margin: 15px 0 20px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        border-radius: 5px;
    }

    .btn-secondary span {
        display: none;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 30px 15px;
    }

    .features-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .features-section > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .features-section .tagline {
        font-size: 16px;
        margin: 15px auto;
    }

    /* Key Features Mobile */
    .key-features-section {
        padding: 30px 15px;
    }

    .key-features-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .key-features-wrapper {
        gap: 10px;
    }

    .feature-box {
        flex: 0 0 100%;
        padding: 20px;
        border-radius: 15px;
    }

    .feature-image {
        height: 200px;
    }

    .feature-box h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 13px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* What We Offer Mobile */
    .what-we-offer-section {
        padding: 30px 15px;
    }

    .what-we-offer-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offer-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .offer-icon {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .offer-card h3 {
        font-size: 14px;
    }

    /* Clients Section Mobile */
    .clients-section {
        padding: 30px 15px;
    }

    .clients-section h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .clients-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .logos-carousel {
        gap: 12px;
    }

    .logo-card {
        flex: 0 0 140px;
        margin: 0 6px;
    }

    .logo-placeholder {
        padding: 12px 8px;
        border-radius: 8px;
    }

    .logo-placeholder img {
        width: 100px !important;
        height: auto !important;
        margin-bottom: 5px !important;
    }

    .logo-placeholder p {
        font-size: 11px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 30px 15px;
    }

    .testimonials-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        background: #f8f5ed;
        padding: 15px;
        border-radius: 12px;
    }

    .stars {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .testimonial-author {
        gap: 10px;
    }

    .author-avatar {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .author-info p {
        font-size: 11px;
    }

    /* Why Choose Us Mobile */
    .why-choose-section {
        padding: 30px 15px;
        background: linear-gradient(135deg, #e8c468 0%, #f5d87a 100%);
    }

    .why-choose-section::before {
        display: none;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .why-choose-text p {
        font-size: 14px;
    }

    .why-choose-list {
        background: white;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .why-choose-list h3 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: left;
    }

    .why-choose-list li {
        font-size: 13px;
        padding: 10px 8px;
        gap: 10px;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
        flex-shrink: 0;
    }

    /* Demo Section Mobile */
    .demo-section {
        padding: 25px 15px;
    }

    .demo-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .demo-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Footer Mobile */
    .footer {
        padding: 20px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer p,
    .footer a {
        font-size: 12px;
    }

    .footer-bottom {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 12px;
    }

    .footer-about a {
        display: block;
        margin-bottom: 8px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        font-size: 12px;
    }
}

/* ===== EXTRA SMALL MOBILE (Below 480px) ===== */
@media (max-width: 480px) {
    /* Hero */
    .navbar {
        display: flex !important;
        padding: 8px 8px !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .navbar-logo {
        flex: 0 0 auto;
        order: 1;
    }

    .navbar-logo img {
        height: 40px;
        width: 40px;
    }

    .nav-menu {
        order: 2;
        flex: 1 1 auto;
        flex-wrap: wrap;
        gap: 3px;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        list-style: none !important;
        align-items: center;
    }

    .nav-menu li {
        display: flex !important;
        list-style: none !important;
    }

    .nav-menu a {
        font-size: 10px;
        padding: 4px 6px;
        white-space: nowrap;
    }

    .contact-btn-nav {
        order: 3;
        flex: 0 0 auto;
        padding: 6px 10px;
        font-size: 10px;
        white-space: nowrap;
        margin-left: auto;
    }

    .hero-container {
        padding: 15px;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .hero-content p {
        font-size: 12px;
        margin: 10px 0 15px 0;
    }

    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    /* Features */
    .features-section {
        padding: 20px 10px;
    }

    .features-section h2 {
        font-size: 20px;
    }

    .features-section > p {
        font-size: 12px;
    }

    /* Key Features */
    .key-features-section {
        padding: 20px 10px;
    }

    .key-features-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-image {
        height: 150px;
    }

    .feature-box h3 {
        font-size: 14px;
    }

    .feature-box p {
        font-size: 12px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* What We Offer */
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .offer-card {
        padding: 15px 10px;
    }

    .offer-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .offer-card h3 {
        font-size: 13px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 20px 10px;
    }

    .testimonials-section h2 {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .author-avatar {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }

    .author-info h4 {
        font-size: 12px;
    }

    /* Why Choose */
    .why-choose-section {
        padding: 20px 10px;
    }

    .why-choose-text h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .why-choose-text p {
        font-size: 12px;
    }

    .why-choose-list {
        padding: 15px 10px;
    }

    .why-choose-list h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .why-choose-list li {
        font-size: 12px;
        padding: 8px 6px;
    }

    /* Demo */
    .demo-section {
        padding: 20px 10px;
    }

    .demo-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .demo-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 15px 10px;
    }

    .footer h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer p,
    .footer a {
        font-size: 11px;
    }
}

/* ===== RESPONSIVE NAVBAR FOR ABOUT & CONTACT PAGES ===== */
/* Desktop View */
header[style*="background: #2c5f7f"] .navbar-custom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 15px 50px !important;
    background: #2c5f7f !important;
    flex-wrap: nowrap !important;
    border: none !important;
}

header[style*="background: #2c5f7f"] .navbar-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0;
}

header[style*="background: #2c5f7f"] .navbar-logo img {
    height: 60px !important;
    width: 60px !important;
    object-fit: contain !important;
}

header[style*="background: #2c5f7f"] .menu-toggle {
    display: none !important;
}

header[style*="background: #2c5f7f"] .nav-menu-custom {
    display: flex !important;
    gap: 40px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
    flex: 1;
    justify-content: center;
    flex-direction: row !important;
}

header[style*="background: #2c5f7f"] .nav-menu-custom li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

header[style*="background: #2c5f7f"] .nav-menu-custom a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: color 0.3s !important;
}

header[style*="background: #2c5f7f"] .nav-menu-custom a:hover {
    color: #c3cfe2 !important;
}

/* Tablet View (769px - 1024px) - Keep in one row */
@media (min-width: 769px) and (max-width: 1024px) {
    header[style*="background: #2c5f7f"] {
        border: none !important;
    }

    header[style*="background: #2c5f7f"] .navbar-custom {
        padding: 12px 30px !important;
        gap: 20px !important;
        border: none !important;
    }

    header[style*="background: #2c5f7f"] .navbar-logo img {
        height: 50px !important;
        width: 50px !important;
    }

    header[style*="background: #2c5f7f"] .menu-toggle {
        display: none !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom {
        gap: 20px !important;
        justify-content: center !important;
        flex-direction: row !important;
        display: flex !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom a {
        font-size: 14px !important;
    }
}

/* Mobile View (max-width 768px) - Toggle menu */
@media (max-width: 768px) {
    header[style*="background: #2c5f7f"] {
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    header[style*="background: #2c5f7f"] .navbar-custom {
        padding: 12px 20px !important;
        flex-direction: row !important;
        gap: 12px !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        border: none !important;
        box-shadow: none !important;
        background: #2c5f7f !important;
    }

    header[style*="background: #2c5f7f"] .navbar-logo {
        order: 1;
        flex-shrink: 0;
    }

    header[style*="background: #2c5f7f"] .navbar-logo img {
        height: 45px !important;
        width: 45px !important;
    }

    header[style*="background: #2c5f7f"] .menu-toggle {
        display: block !important;
        order: 2;
        flex-shrink: 0;
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 24px !important;
        cursor: pointer !important;
        padding: 8px !important;
        z-index: 1000 !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom {
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        flex-direction: column !important;
        gap: 0 !important;
        background: #2c5f7f !important;
        padding: 0 !important;
        border: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        list-style: none !important;
        margin: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom.active {
        max-height: 250px !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom li:last-child {
        border-bottom: none !important;
    }

    header[style*="background: #2c5f7f"] .nav-menu-custom a {
        font-size: 14px !important;
        padding: 15px 20px !important;
        display: block !important;
        white-space: nowrap !important;
    }
}
/* Additional styles for Mobile App Features */
.user-app-row {
   display: flex;
    align-items: stretch;
    gap: 48px;
    margin-bottom: 48px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.user-app-image-col {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.user-app-main-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.user-app-features-col {
    flex: 1 1 55%;
    margin-left: 170px;
    /* background: #fffbe7;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    max-width: 400px; */
}

.user-app-features-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.18rem;
    color: #b48a00;
    font-weight: 700;
}

.user-app-features-list {
    padding-left: 16px;
    margin: 0;
}

.user-app-features-list li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: #333;
    font-weight: 500;
    list-style: none;
    display: flex;
    align-items: center;
}

.user-app-features-list li::before {
    content: '•';
    color: #f7b500;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

/* Vendor App Row (Reverse Layout) */
.vendor-app-row {
    display: flex;
    align-items: stretch;
    gap: 48px;
    margin-bottom: 48px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row-reverse;
}

.vendor-app-image-col {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px; 
    margin-left: 110px;
}

.vendor-app-main-img {
  width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.vendor-app-features-col {
    flex: 1 1 45%;
    /* background: #e7f3ff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px; */
}

.vendor-app-features-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.25rem;
    color: #2c5f7f;
    font-weight: 700;
}

.vendor-app-features-list {
    padding-left: 18px;
    margin: 0;
}

.vendor-app-features-list li {
    margin-bottom: 12px;
    font-size: 1.08rem;
    color: #333;
    font-weight: 500;
    list-style: none;
    display: flex;
    align-items: center;
}

.vendor-app-features-list li::before {
    content: '•';
    color: #2c5f7f;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.logos-grid {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0;
}

.logos-carousel {
    display: flex;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

.logo-card {
    flex: 0 0 180px;
    margin: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 18px 12px;
    text-align: center;
    min-width: 120px;
}

.logo-placeholder span {
    font-size: 2.2rem;
    display: block;
}

.logo-placeholder p {
    margin: 8px 0 0 0;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Static Grid for Logos */
.logos-grid-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-card-static {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-placeholder-static {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 12px 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1.3 / 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-placeholder-static:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.logo-placeholder-static img {
    max-width: 80%;
    height: auto;
    max-height: 70%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .logos-grid-static {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .logos-grid-static {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 600px) {
    .logos-grid-static {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }
}

@media (max-width: 900px) {
    .user-app-row, 
    .vendor-app-row { 
        flex-direction: column; 
        gap: 24px; 
    }
    
    .user-app-image-col, 
    .user-app-features-col,
    .vendor-app-image-col,
    .vendor-app-features-col { 
        width: 100%; 
        min-width: 0; 
        flex: 1 1 auto;
    }
    
    .user-app-features-col,
    .vendor-app-features-col { 
        padding: 24px 20px 20px 20px; 
    }
}

@media (max-width: 768px) {
    .user-app-row, 
    .vendor-app-row { 
        flex-direction: column !important;
        gap: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    .user-app-image-col, 
    .user-app-features-col,
    .vendor-app-image-col,
    .vendor-app-features-col { 
        width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    
    .user-app-main-img,
    .vendor-app-main-img {
        width: 100% !important;
        max-width: 220px !important;
        height: auto !important;
        max-height: 400px !important;
    }
    
    .user-app-features-col,
    .vendor-app-features-col { 
        padding: 15px 10px !important;
    }

    .logo-card { flex: 0 0 120px; margin: 0 8px; }
    .logo-placeholder { min-width: 80px; padding: 10px 4px; }
    .logo-placeholder span { font-size: 1.4rem; }
    .logo-placeholder p { font-size: 0.8rem; }
}

/* Make Partner interface section more compact */
.partner-interface-bg {
    padding: 8px 8px !important;
    border-radius: 10px !important;
}

.contact-btn-nav {
    color: white;
}

.offer-content-col h2 {
    margin-bottom: 12px;
}

.offer-content-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Footer Styling */
.footer {
    background: #2c5f7f;
    color: white;
    padding: 40px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-left {
    margin-left: 0;
}

/* .footer-left h3,
.footer-right h3, */
.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
    /* text-align: left; */
}

.footer-right {
    display: contents;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-icon {
    font-size: 20px;
    min-width: 24px;
    text-align: center;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.footer-section {
    margin-bottom: 15px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: white;
}

.footer-links-section {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    max-width: 1400px;
    margin: 0 auto 20px auto;
    padding: 20px 40px 0 40px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.footer-links-section a {
    /* color: rgba(255, 255, 255, 0.9); */
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
    color: white;
}

.footer-links-section a:hover {
    color: white;
}

.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 900px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-links-section {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }

    .footer-left h3,
    .footer-right h3 {
        font-size: 18px;
        text-align: left;
        margin-bottom: 25px;
        margin-left: 0;
    }

    .footer-left {
        text-align: left;
        margin-left: 0;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
    }

    .contact-icon {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section h3 {
        text-align: center;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }

    .footer-links-section a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 25px;
    }

    .footer-logo {
        font-size: 14px;
        justify-content: center;
    }

    .footer-logo img {
        height: 35px;
        width: 35px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin: 0;
    }
}

/* Tech-Enabled Cafeteria Experience Section */
.cafeteria-experience-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 80px 40px;
}

.cafeteria-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.cafeteria-wrapper h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

.cafeteria-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cafeteria-text-col {
    padding-right: 40px;
}

.cafeteria-text-col h3 {
    font-size: 28px;
    color: #2c5f7f;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.mm-intro {
    font-size: 16px;
    color: #f7b500;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.mm-subheading {
    font-size: 18px;
    color: #2c5f7f;
    font-weight: 800;
    margin: 24px 0 16px 0;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.cafeteria-text-col p {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.cafeteria-benefits {
    background: #fffbe7;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #f7b500;
}

.cafeteria-benefits h4 {
    font-size: 16px;
    color: #2c5f7f;
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cafeteria-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cafeteria-benefits li {
    font-size: 15px;
    color: #333;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.cafeteria-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f7b500;
    font-weight: 700;
    font-size: 18px;
}

.cafeteria-cta {
    margin-top: 30px;
}

.cta-label {
    font-size: 12px;
    color: #2c5f7f;
    font-weight: 900;
    margin-bottom: 14px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.app-btn.playstore {
    border-color: #2c5f7f;
    color: #2c5f7f;
    background: white;
}

.app-btn.playstore:hover {
    background: #2c5f7f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 127, 0.3);
}

.app-btn.appstore {
    border-color: #f7b500;
    color: #f7b500;
    background: white;
}

.app-btn.appstore:hover {
    background: #f7b500;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 181, 0, 0.3);
}

.btn-icon {
    font-size: 16px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text small {
    font-size: 10px;
    opacity: 0.8;
    line-height: 1.2;
}

.btn-text strong {
    font-size: 13px;
    line-height: 1.2;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c5f7f 0%, #1e4a66 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 95, 127, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 127, 0.4);
}

/* Cafeteria Card Grid */
.cafeteria-images-col {
    position: relative;
}

.cafeteria-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cafeteria-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1;
}

.cafeteria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.cafeteria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cafeteria-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 127, 0.95), transparent);
    color: white;
    padding: 20px 16px 16px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Background Card Effect */
.cafeteria-card-grid::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: linear-gradient(135deg, rgba(247, 181, 0, 0.15), rgba(44, 95, 127, 0.15));
    border-radius: 12px;
    z-index: -1;
}

.cafeteria-card-grid::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    bottom: 32px;
    background: linear-gradient(135deg, rgba(247, 181, 0, 0.08), rgba(44, 95, 127, 0.08));
    border-radius: 8px;
    z-index: -2;
}

@media (max-width: 1200px) {
    .cafeteria-content {
        gap: 60px;
    }
    
    .cafeteria-text-col {
        padding-right: 20px;
    }
}

@media (max-width: 900px) {
    .cafeteria-experience-section {
        padding: 60px 30px;
    }
    
    .cafeteria-wrapper h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .cafeteria-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cafeteria-text-col {
        padding-right: 0;
    }
    
    .cafeteria-text-col h3 {
        font-size: 24px;
    }
    
    .cafeteria-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .cafeteria-experience-section {
        padding: 40px 20px;
    }
    
    .cafeteria-wrapper h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .cafeteria-text-col h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .cafeteria-text-col p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cafeteria-benefits {
        padding: 20px;
    }
    
    .cafeteria-benefits h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .cafeteria-benefits li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 24px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .cafeteria-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .cafeteria-card h4 {
        font-size: 14px;
        padding: 16px 12px 12px;
    }
}

@media (max-width: 480px) {
    .cafeteria-wrapper h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .cafeteria-text-col h3 {
        font-size: 18px;
    }
    
    .cafeteria-text-col p {
        font-size: 13px;
    }
    
    .cafeteria-benefits {
        padding: 16px;
    }
    
    .cafeteria-benefits li {
        font-size: 12px;
    }
    
    .cafeteria-card-grid {
        gap: 10px;
    }
}
