.carousel-item-with-overlay {
        position: relative;
         background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* Fallback background */
    }

    .carousel-item-with-overlay img {
        object-fit: cover;
     }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
        z-index: 1;
    }

    .carousel-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 2;
        width: 100%;
        padding: 0 20px;
    }

    .carousel-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .carousel-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        margin: 0;
    }

    .orange-border-divider {
        width: 80%;
        height: 3px;
        background-color: #f29200;
        margin: 0 auto;
    }

    .about-us-container {
        background-color: var(--bg-color);
        min-height: 100vh;
        padding: 2rem 0;
    }

    .about-title {
        color: #2c3e50;
        font-weight: 700;
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .about-subtitle {
        color: #34495e;
        font-weight: 600;
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-intro {
        color: #5d6d7e;
        font-size: 1.1rem;
        line-height: 1.7;
        max-width: 900px;
        margin: 0 auto;
    }

    .platform-description {
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .description-text {
        color: #5d6d7e;
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 0;
    }

    .section-title {
        color: #2c3e50;
        font-weight: 600;
        font-size: 2rem;
    }

    .ecosystem-intro {
        color: #5d6d7e;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .feature-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-title {
        color: #2c3e50;
        font-weight: 600;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
    }

    .feature-item {
        color: #5d6d7e;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }

    .why-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 1.5rem;
        transition: transform 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-5px);
    }

    .why-title {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .why-description {
        color: #5d6d7e;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }

    .cta-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        padding: 3rem 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    }

    .cta-title {
        font-weight: 600;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    @media (max-width: 768px) {
        .carousel-title {
            font-size: 2.5rem;
        }

        .carousel-subtitle {
            font-size: 1.2rem;
        }

        .carousel-text {
            padding: 0 15px;
        }

        .about-title {
            font-size: 2.5rem;
        }

        .about-subtitle {
            font-size: 1.5rem;
        }

        .section-title {
            font-size: 1.7rem;
        }

        .feature-card,
        .why-card {
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }


    }

    @media (max-width: 480px) {
        .carousel-title {
            font-size: 2rem;
        }

        .carousel-subtitle {
            font-size: 1rem;
        }

        .carousel-text {
            padding: 0 10px;
        }
    }