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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.dashboard-main {
    background: white;
    width: 100%;
    min-height: calc(100vh - 80px);
}

/* ========================================
           HERO SECTION
           ======================================== */


.hero-video-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.hero-container {
    position: relative;
    width: 100%;
    padding: 80px 20px 40px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;

    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.hero-video-wrapper>.section-title {
    position: relative;
    z-index: 10;
    padding: 25px 20px 0 20px;
    margin: 0;
    width: 100%;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
}

.hero-video-wrapper>.section-title strong {
    font-weight: 700;
}

/* ========================================
        RESPONSIVE - Desktop
        ======================================== */

/* Desktop - 2800px+ */
@media (min-width: 2800px) {
    .hero-container {
        padding: 80px 20px 40px 20px;
        min-height: 600px;
    }

    .hero-video-wrapper>.section-title {
        padding: 35px 20px 0;
        font-size: 50px;
    }

    .category-pills {
        justify-content: center;
    }


}

/* Desktop - 1866px to 2799px */
@media (min-width: 1866px) and (max-width: 2799px) {
    .hero-container {
        padding: 60px 20px 30px 20px;
        min-height: 550px;
    }

    .hero-video-wrapper>.section-title {
        padding: 25px 20px 0;
        font-size: 42px;
    }

    .category-pills {
        justify-content: center;
    }
}

/* Desktop - 1400px to 1865px */
@media (min-width: 1400px) and (max-width: 1865px) {
    .hero-container {
        padding: 50px 20px 25px 20px;
        min-height: 500px;
    }

    .hero-video-wrapper>.section-title {
        padding: 20px 20px 0;
        font-size: 37px;
    }

    .category-pills {
        justify-content: center;
    }
}

/* Tablet Landscape - 1025px to 1399px */
@media (min-width: 1025px) and (max-width: 1399px) {
    .hero-container {
        padding: 60px 20px 30px 20px;
        min-height: 520px;
    }

    .hero-video-wrapper>.section-title {
        padding: 25px 20px 0;
        font-size: 42px;
    }
}

/* Tablet Portrait - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-container {
        padding: 60px 20px 30px;
        min-height: 500px;
    }

    .hero-video-wrapper>.section-title {
        padding: 25px 20px 0px;
        font-size: 32px;
    }
}



/* ========================================
        RESPONSIVE - Mobile
        ======================================== */

/* Mobile - 991px and below */
@media (max-width: 991px) {
    .hero-container {
        padding: 60px 16px 30px 16px;
        min-height: 500px;
    }

    .hero-video-wrapper>.section-title {
        padding: 25px 16px 0px 16px;
        font-size: 32px;
    }

    .launched-section {
        padding: 35px 20px;
    }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
    .hero-container {
        padding: 50px 16px;
        min-height: 450px;
    }

    .hero-video-wrapper>.section-title {
        padding: 36px 16px 0;
        font-size: 28px;
        margin-bottom: 0;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .hero-container {
        padding: 40px 12px;
        min-height: 400px;
    }

    .hero-video-wrapper>.section-title {
        padding: 28px 12px 0;
        font-size: 24px;
    }
}










.dashboard-title {
    text-align: center;
    margin-bottom: 40px;
    max-width: 100vw !important;
}

.dashboard-title p {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 400;
}

.dashboard-title span {
    font-weight: 700;
}

.textarea-wrapper {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.textarea-wrapper>div:first-child {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.textarea-wrapper p {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    padding-bottom: 24px;
}

textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 24px !important;
    resize: none;
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.6;
}




.action-section {
    text-align: center;
    margin-top: 20px;
}

.create-app-btn {
    background: #5B7BFF;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(91, 123, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.create-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 123, 255, 0.4);
}

.inspiration-section-v2 {
    margin-top: 32px;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: url('/static/img/preset_bg.png');
}

.inspiration-title-v2 {
    color: #515bc2;
    text-align: center;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 500;
}

.chips-scroll-container {
    overflow: hidden;
    position: relative;
}

.chips-container {
    display: flex;
    gap: 10px;
    padding: 4px 0;
}

.chip {
    background: rgba(255, 255, 255, 0.75);
    color: #515bc2;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ========================================
           CAROUSEL SECTION
           ======================================== */
.launched-section {
    padding: 50px 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.section-title strong {
    font-weight: 700;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

.testimonial-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;


    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    padding: 32px 28px 70px;
    background: white;
    position: relative;
    min-height: 222px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 400;
}

.quote-icon {
    position: absolute;
    right: 24px;
    bottom: 24px;
    opacity: 0.3;
}

.quote-icon img {
    width: 32px;
    height: auto;
}

.user-section {
    background: linear-gradient(135deg, #5B6BFF 0%, #8B5CF6 100%);
    padding: 60px 28px 16px;
    position: relative;
    text-align: center;
}

.profile-photo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.user-name {
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin-bottom: 4px;
    margin-top: 8px;
}

.app-information {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.app-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.app-name {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    background: transparent;
}

.btn-download {
    color: white;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-preview {
    color: #5B6BFF;
    background: white;
}

.btn-preview:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* CAROUSEL NAVIGATION */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: #5B7BFF;
    border-color: #5B7BFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(91, 123, 255, 0.3);
}

.carousel-nav-btn:hover i {
    color: white;
}

.carousel-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav-btn i {
    font-size: 18px;
    color: #374151;
    transition: color 0.3s ease;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* CAROUSEL DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #5B7BFF;
    width: 24px;
    border-radius: 4px;
}

/* ========================================
           APPS SECTION - WIDER CONTAINER
           ======================================== */
.apps-section {
    padding: 60px 20px;
    width: 100%;
    max-width: 2200px;
    margin: 0 auto;
}

.app-title {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.app-title strong {
    font-weight: 700;
}

.app-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: #6b7280;
    margin-bottom: 36px;
}

.category-filter-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-pills {
    display: flex;
    gap: 45px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.category-pills::-webkit-scrollbar {
    height: 4px;
}

.category-pills::-webkit-scrollbar-track {
    background: transparent;
}

.category-pills::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.category-pill {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid #5B7BFF;
    background: transparent;
    color: #5B7BFF;
    flex-shrink: 0;
}

.category-pill.active {
    background: #5B7BFF;
    color: white;
}

.category-pill:hover:not(.active) {
    background: rgba(91, 123, 255, 0.08);
}




/* ========================================
           RESPONSIVE
           ======================================== */

/* Desktop - 2800px+ */
@media (min-width: 2800px) {
    .hero-content-wrapper {
        max-width: 1100px;
    }

    .attachment-btn {
        bottom: 24px !important;
        right: 24px !important;
    }

    .attachment-btn img {
        width: 32px !important;
        height: 32px !important;
    }

    .project-card {
        width: 395px !important;
    }

    .dashboard-title p {
        font-size: 58px;
    }
}

/* Desktop - 1866px to 2799px */
@media (min-width: 1866px) and (max-width: 2799px) {
    .hero-content-wrapper {
        max-width: 800px;
    }

    /* HERO SECTION - Reduced padding and fonts */
    .hero-container {
        padding: 60px 20px 30px 20px;
        min-height: 550px;
    }

    .dashboard-title {
        margin-bottom: 32px;
    }

    .dashboard-title p {
        font-size: 44px;
    }

    .textarea-wrapper {
        padding: 20px;
    }

    .textarea-wrapper p {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        padding-bottom: 20px;
    }

    textarea {
        font-size: 18px !important;
    }

    .create-app-btn {
        font-size: 14px;
        padding: 12px 28px;
    }

    .inspiration-section-v2 {
        padding: 18px;
        margin-top: 28px;
    }

    .inspiration-title-v2 {
        font-size: 14px;
    }

    .chip {
        font-size: 14px;
        padding: 7px 12px;
    }

    /* CAROUSEL SECTION - Compact */
    .launched-section {
        padding: 25px 20px 50px 20px;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 36px;
    }

    .carousel-wrapper {
        max-width: 1000px;
    }

    .testimonial-content {
        padding: 24px 22px 50px;
        min-height: 180px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .quote-icon {
        right: 20px;
        bottom: 20px;
    }

    .quote-icon img {
        width: 24px;
    }

    .user-section {
        padding: 48px 22px 13px;
    }

    .profile-photo {
        width: 85px;
        height: 85px;
        top: -42px;
        border: 3px solid white;
    }

    .user-name {
        font-size: 18px;
        margin-bottom: 4px;
        font-weight: 400;
        margin-top: 8px;
    }

    .app-information {
        margin-bottom: 10px;
    }

    .app-icon {
        width: 26px;
        height: 26px;
    }

    .app-name {
        font-size: 14px;
    }

    .btn {
        padding: 9px 24px;
        font-size: 12px;
    }

    /* APPS SECTION - Full width category filter */
    .apps-section {
        padding: 50px 20px;
        max-width: 2200px;
    }

    .app-title {
        font-size: 42px;
    }

    .app-subtitle {
        font-size: 14px;
    }

    .category-filter-container {
        padding: 14px 20px;
        max-width: 90%;
    }

    .category-pills {
        gap: 28px;
    }

    .category-pill {
        padding: 8px 20px;
        font-size: 18px;
    }

    .project-card {
        width: 370px !important;
    }

    .attachment-btn {
        bottom: 24px !important;
        right: 24px !important;
    }
}

/* Desktop - 1400px to 1865px */
@media (min-width: 1400px) and (max-width: 1865px) {
    .hero-content-wrapper {
        max-width: 700px;
    }

    /* HERO SECTION - Even smaller padding */
    .hero-container {
        padding: 50px 20px 25px 20px;
        min-height: 500px;
    }

    .dashboard-title {
        margin-bottom: 28px;
    }

    .dashboard-title p {
        font-size: 39px;
    }

    .textarea-wrapper {
        padding: 18px;
    }

    .textarea-wrapper p {
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        padding-bottom: 18px;
    }

    textarea {
        font-size: 16px !important;
    }

    .create-app-btn {
        font-size: 13px;
        padding: 11px 26px;
    }

    .inspiration-section-v2 {
        padding: 16px;
        margin-top: 24px;
    }

    .inspiration-title-v2 {
        font-size: 13px;
    }

    .chip {
        font-size: 13px;
        padding: 6px 11px;
    }

    /* CAROUSEL SECTION - Very compact */
    .launched-section {
        padding: 20px 20px 40px 20px;
    }

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

    .carousel-wrapper {
        max-width: 900px;
    }

    .testimonial-content {
        padding: 22px 20px 45px;
        min-height: 170px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .quote-icon {
        right: 18px;
        bottom: 18px;
    }

    .quote-icon img {
        width: 20px;
    }

    .user-section {
        padding: 44px 20px 12px;
    }

    .profile-photo {
        width: 75px;
        height: 75px;
        top: -38px;
        border: 3px solid white;
    }

    .user-name {
        font-size: 17px;
        margin-bottom: 4px;
        font-weight: 400;
        margin-top: 8px;
    }

    .app-information {
        margin-bottom: 9px;
    }

    .app-icon {
        width: 24px;
        height: 24px;
    }

    .app-name {
        font-size: 13px;
    }

    .btn {
        padding: 8px 22px;
        font-size: 12px;
    }

    /* APPS SECTION - Full width category filter */
    .apps-section {
        padding: 40px 20px;
    }

    .app-title {
        font-size: 37px;
    }

    .app-subtitle {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .category-filter-container {
        padding: 12px 18px;
        max-width: 86%;
    }

    .category-pills {
        gap: 14px;
    }

    .category-pill {
        padding: 7px 18px;
        font-size: 12px;
    }

    .project-card {
        width: 370px !important;
    }

    .attachment-btn {
        bottom: 24px !important;
        right: 24px !important;
    }
}

/* ========================================
        TABLET LANDSCAPE - 1025px to 1399px
        (Insert AFTER Desktop 1400-1865px breakpoint)
        ======================================== */

@media (min-width: 1025px) and (max-width: 1399px) {

    /* HERO SECTION */
    .hero-content-wrapper {
        max-width: 700px;
    }

    .hero-container {
        padding: 60px 20px 30px 20px;
        min-height: 520px;
    }

    .dashboard-title {
        margin-bottom: 32px;
    }

    .dashboard-title {
        max-width: 650px !important;
    }

    .dashboard-title p {
        font-size: 36px;
    }

    .textarea-wrapper {
        padding: 20px;
    }

    .textarea-wrapper p {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        padding-bottom: 20px;
    }

    textarea {
        font-size: 20px !important;
        min-height: 120px;
    }

    .attachment-btn {
        bottom: 22px !important;
        right: 22px !important;
    }

    .attachment-btn img {
        width: 24px !important;
        height: 24px !important;
    }

    .create-app-btn {
        font-size: 15px;
        padding: 13px 30px;
    }

    /* INSPIRATION CHIPS */
    .inspiration-section-v2 {
        padding: 18px;
        margin-top: 28px;
    }

    .inspiration-title-v2 {
        font-size: 15px;
    }

    .chip {
        font-size: 14px;
        padding: 8px 13px;
    }

    /* CAROUSEL SECTION */
    .launched-section {
        padding: 25px 20px 50px 20px;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .carousel-wrapper {
        max-width: 1100px;
        padding: 0 55px;
    }

    .carousel-slide {
        flex: 0 0 calc(33.333% - 16px);
    }

    .carousel-track {
        gap: 20px;
    }

    .carousel-nav-btn {
        width: 46px;
        height: 46px;
    }

    .carousel-nav-btn i {
        font-size: 17px;
    }

    .testimonial-content {
        padding: 28px 24px 55px;
        min-height: 200px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.55;
        -webkit-line-clamp: 5;
    }

    .quote-icon {
        right: 22px;
        bottom: 22px;
    }

    .quote-icon img {
        width: 24px;
    }

    .user-section {
        padding: 52px 24px 14px;
    }

    .profile-photo {
        width: 90px;
        height: 90px;
        top: -45px;
        border: 4px solid white;
    }

    .user-name {
        font-size: 19px;
        margin-bottom: 4px;
        font-weight: 400;
        margin-top: 8px;
    }

    .app-information {
        margin-bottom: 11px;
    }

    .app-icon {
        width: 27px;
        height: 27px;
    }

    .app-name {
        font-size: 14px;
    }

    .btn {
        padding: 9px 26px;
        font-size: 13px;
    }

    /* APPS SECTION */
    .apps-section {
        padding: 50px 20px;
        max-width: 2000px;
    }

    .app-title {
        font-size: 42px;
    }

    .app-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .category-filter-container {
        padding: 14px 22px;
        max-width: 92%;
    }

    .category-pills {
        gap: 20px;
        scrollbar-width: none;
        /* 🆕 Optional: Hide scrollbar */
        -ms-overflow-style: none;
    }

    .category-pills::-webkit-scrollbar {
        display: none;
        /* 🆕 Optional: Hide scrollbar for Webkit */
    }

    .category-pill {
        padding: 9px 20px;
        font-size: 16px !important;
    }

    .project-card {
        width: 360px !important;
        max-width: 360px !important;
    }

}

/* Tablet - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .carousel-wrapper {
        padding: 0 50px;
    }



    .hero-content-wrapper {
        max-width: 660px !important;
    }


}

@media (min-width:769px) and (max-width: 1024px) {
    .attachment-btn {
        bottom: 24px !important;
        right: 24px !important;
    }

    .project-card {
        max-width: 330px !important;
    }

}

/* Mobile - 991px and below */
@media (max-width: 991px) {
    .hero-container {
        padding: 60px 16px 30px;
        min-height: 500px;
    }

    .dashboard-title p {
        font-size: 32px;
    }

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

/* Mobile - 767px and below */
@media (max-width: 767px) {
    .dashboard-main {
        min-height: calc(100vh - 60px);
    }

    .hero-container {
        padding: 50px 16px;
        min-height: 450px;
    }

    .dashboard-title {
        margin-bottom: 24px;
        padding: 0 12px;
    }

    .dashboard-title p {
        font-size: 28px;
        line-height: 1.3;
    }

    .textarea-wrapper {
        padding: 18px;
    }

    .textarea-wrapper p {
        font-size: 18px;
        padding-bottom: 18px;
    }

    textarea {
        font-size: 18px !important;
        min-height: 100px;
    }

    .action-section {
        margin-top: 18px;
    }

    .create-app-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 350px;
    }

    .inspiration-section-v2 {
        padding: 16px;
        margin-top: 24px;
    }

    .inspiration-title-v2 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .chips-scroll-container {
        margin: 0 -4px;
    }

    .chip {
        font-size: 13px;
        padding: 6px 11px;
    }

    .launched-section {
        padding: 50px 16px;
    }

    .section-title,
    .app-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-nav-btn i {
        font-size: 16px;
    }

    .carousel-prev {
        left: -5px;
    }

    .carousel-next {
        right: -5px;
    }


    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .quote-icon {
        right: 20px;
        bottom: 20px;
    }

    .quote-icon img {
        width: 20px;
    }

    .user-section {
        padding: 50px 22px 26px;
    }

    .profile-photo {
        width: 85px;
        height: 85px;
        top: -42px;
        border: 3px solid white;
    }

    .user-name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .app-information {
        margin-bottom: 20px;
    }

    .app-icon {
        width: 26px;
        height: 26px;
    }

    .app-name {
        font-size: 14px;
    }

    .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
        padding: 10px 20px;
    }

    .apps-section {
        padding: 45px 16px;
    }

    .app-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .category-filter-container {
        padding: 14px 18px;
    }

    .category-pills {
        gap: 14px;
    }

    .category-pill {
        padding: 8px 18px;
        font-size: 12px;
    }

    .project-card {
        width: 100% !important;
    }


}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .hero-container {
        padding: 40px 12px;
        min-height: 400px;
    }

    .dashboard-title {
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .dashboard-title p {
        font-size: 24px;
    }

    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-nav-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-prev {
        left: -8px;
    }

    .carousel-next {
        right: -8px;
    }


    .testimonial-text {
        font-size: 13px;
    }

    .user-section {
        padding: 48px 20px 24px;
    }

    .profile-photo {
        width: 80px;
        height: 80px;
        top: -40px;
        border: 3px solid white;
    }
}

/* Project cards */
.project-header {
    padding: 20px 20px 0 !important;
}

.app-info {
    padding: 0 20px !important;
}

.app-description {
    background-color: transparent !important;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.project-title {
    font-weight: 600 !important;
}

/* ========================================
   MOBILE ONLY RESPONSIVE CSS
   (Does NOT affect tablets - 767px and below only)
   ======================================== */

/* Mobile - 767px and below ONLY */
@media (max-width: 767px) {

    .dashboard-main {
        min-height: calc(100vh - 60px);
    }

    /* HERO SECTION */
    .hero-container {
        padding: 50px 16px;
        min-height: 450px;
    }

    .dashboard-title {
        margin-bottom: 24px;
        padding: 0 12px;
    }

    .dashboard-title p {
        font-size: 28px;
        line-height: 1.3;
    }

    .textarea-wrapper {
        padding: 18px;
    }

    .textarea-wrapper p {
        font-size: 18px;
        padding-bottom: 18px;
    }

    textarea {
        font-size: 18px !important;
        min-height: 100px;
    }



    .action-section {
        margin-top: 18px;
    }

    .create-app-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 350px;
    }

    /* INSPIRATION CHIPS */
    .inspiration-section-v2 {
        padding: 16px;
        margin-top: 24px;
    }

    .inspiration-title-v2 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .chips-scroll-container {
        margin: 0 -4px;
    }

    .chips-container {
        height: 55px !important;
    }

    .chip {
        font-size: 13px;
        padding: 6px 11px;
    }

    /* CAROUSEL SECTION */
    .launched-section {
        padding: 50px 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-track {
        gap: 16px;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-nav-btn i {
        font-size: 16px;
    }

    .carousel-prev {
        left: -5px;
    }

    .carousel-next {
        right: -5px;
    }

    .carousel-dots {
        margin-top: 24px;
    }



    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .quote-icon {
        right: 20px;
        bottom: 20px;
    }

    .quote-icon img {
        width: 20px;
    }

    .user-section {
        padding: 50px 22px 26px;
    }

    .profile-photo {
        width: 85px;
        height: 85px;
        top: -42px;
        border: 3px solid white;
    }

    .user-name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .app-information {
        margin-bottom: 20px;
    }

    .app-icon {
        width: 26px;
        height: 26px;
    }

    .app-name {
        font-size: 14px;
    }

    .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
        padding: 10px 20px;
    }

    /* APPS SECTION */
    .apps-section {
        padding: 45px 16px;
    }

    .app-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .app-subtitle {
        font-size: 14px !important;
        margin-bottom: 28px;
    }

    .category-filter-container {
        padding: 14px 18px;
    }

    .category-pills {
        gap: 12px;
        justify-content: flex-start;
    }

    .category-pill {
        padding: 8px 16px;
        font-size: 12px !important;
    }

    .project-card {
        width: 100% !important;
        max-width: 100% !important;
    }


}

/* Small Mobile - 480px and below ONLY */
@media (max-width: 480px) {

    /* HERO SECTION */
    .hero-container {
        padding: 40px 12px;
        min-height: 400px;
    }

    .dashboard-title {
        margin-bottom: 20px;
        padding: 0 8px;
    }

    .dashboard-title p {
        font-size: 24px;
    }

    .textarea-wrapper {
        padding: 16px;
    }

    .textarea-wrapper p {
        font-size: 16px;
        padding-bottom: 16px;
    }

    textarea {
        font-size: 16px !important;
        min-height: 90px;
    }


    .create-app-btn {
        padding: 11px 24px;
        font-size: 13px;
    }

    /* INSPIRATION CHIPS */
    .inspiration-section-v2 {
        padding: 14px;
        margin-top: 20px;
    }

    .inspiration-title-v2 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .chip {
        font-size: 12px;
        padding: 6px 10px;
    }

    .chips-container {
        height: 55px !important;
    }

    /* CAROUSEL SECTION */
    .launched-section {
        padding: 40px 12px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-nav-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-nav-btn i {
        font-size: 14px;
    }

    .carousel-prev {
        left: -8px;
    }

    .carousel-next {
        right: -8px;
    }

    .carousel-dots {
        margin-top: 20px;
        gap: 6px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .carousel-dot.active {
        width: 18px;
    }



    .testimonial-text {
        font-size: 13px;
    }

    .quote-icon {
        right: 18px;
        bottom: 18px;
    }

    .quote-icon img {
        width: 20px;
    }

    .user-section {
        padding: 48px 20px 24px;
    }

    .profile-photo {
        width: 80px;
        height: 80px;
        top: -40px;
        border: 3px solid white;
    }

    .user-name {
        font-size: 17px;
    }

    .app-icon {
        width: 24px;
        height: 24px;
    }

    .app-name {
        font-size: 13px;
    }

    .btn {
        padding: 9px 18px;
        font-size: 12px;
    }

    /* APPS SECTION */
    .apps-section {
        padding: 40px 12px;
    }

    .app-title {
        font-size: 24px;
    }

    .app-subtitle {
        font-size: 13px !important;
        margin-bottom: 24px;
    }

    .category-filter-container {
        padding: 12px 16px;
    }

    .category-pills {
        gap: 10px;
    }

    .category-pill {
        padding: 7px 14px;
        font-size: 11px !important;
    }


    .projects-container {
        margin-left: 0px !important;
        margin-right: 0px !important;
        padding: 0px !important;
        width: 100% !important;
    }
}


/* =========================
        CARD LAYOUT – BASE
        ========================= */

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-content {
    background: white;
    position: relative;
    padding: 32px 28px 60px;
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.user-section {
    margin-top: auto;
}



/* =========================
        TABLET (FIX)
        ========================= */
@media (min-width: 768px) and (max-width: 1024px) {

    .category-pill {
        font-size: 14px !important;
    }

    .category-pills {
        gap: 14px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .category-pills::-webkit-scrollbar {
        display: none;
    }

    .testimonial-text {
        -webkit-line-clamp: 6;
    }
}

/* =========================
        MOBILE
        ========================= */
@media (max-width: 767px) {


    .testimonial-text {
        -webkit-line-clamp: 7;
    }

    .category-pills {
        gap: 14px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .category-pills::-webkit-scrollbar {
        display: none;
    }
}

.dashboard-header {
    background: transparent !important;
    box-shadow: none !important;
}

.carousel-wrapper,
.apps-section {
    z-index: 2;
    position: relative;
}



/* Menu Bar Base Styles */
.dashboard-menu-bar {
    display: flex;
    gap: 40px;
    padding: 12px 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    align-items: center;
}

.menu-item {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    position: relative;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

/* Desktop hover effect */
@media (hover: hover) and (pointer: fine) {
    .menu-item:hover {
        color: #5B7BFF;
    }
}

/* Mobile/Tablet active effect */
@media (hover: none) {
    .menu-item:active {
        color: #5B7BFF;
    }
}

/* Mega Menu Dropdown */
.menu-dropdown {
    position: fixed;
    /* top: 100%; */
    left: 0%;
    margin-top: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    width: 60vw;
    max-width: 1300px;
    min-width: 800px;
}

/* Platform-specific dropdown sizing */
.menu-dropdown:not(.menu-dropdown-solution) {
    width: 45vw;
    max-width: 950px;
    min-width: 600px;
}


.menu-dropdown.menu-dropdown-solution {
    /* left: -400% !important; */
}



.menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Platform Mega Menu - 2 Column Grid */
.mega-menu-platform {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mega-menu-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #5B7BFF;
    display: inline-block;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-link {
    font-size: 16px;
    font-weight: 550;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
    line-height: 1.5;
    padding: 6px 0;
    margin-bottom: 8px;
}



/* Highlighted Card */
.mega-menu-card {
    background: #f3f3ff;
    border-radius: 12px;
    padding: 24px;
}

/* Icon + Title in flex row */
.mega-menu-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mega-menu-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.mega-menu-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.mega-menu-card p {
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mega-menu-card-btn {
    background: #5B7BFF;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.mega-menu-card-btn:hover {
    background: #4A6AEE;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 123, 255, 0.3);
}

/* Solutions Mega Menu - 3 Column Grid */
.mega-menu-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.mega-menu-column,
.solutions-column {
    background: white;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mega-menu-column {
    padding: 32px;
}


.solutions-column h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #5B7BFF;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}

.solutions-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.solutions-item {
    font-size: 16px;
    font-weight: 550;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1.5;
    padding: 6px 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

a.solutions-item {
    text-decoration: none;
    color: #1a1a1a;
}

a.solutions-item:hover {
    color: #5B7BFF;
}

a.solutions-item:visited {
    color: #1a1a1a;
}


.solutions-item img {
    align-self: start;
}


/* Solution Menu Header - Base Style */
.mega-menu-header,
.solution-menu-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.mega-menu-header img,
.solution-menu-header img {
    background: #ebfaf3;
    border-radius: 8px;
    padding: 8px;
    width: 48px;
    height: 48px;
}


.solution-menu-header i {
    background: #ebfaf3;
    border-radius: 8px;
    padding: 8px;
    width: 48px;
    height: 48px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Solution Menu Buttons - Base Style */
.btn-solution-menu {
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(91, 123, 255, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.btn-try-ai-service {
    background: #33d09b;
}

.btn-dev-tier-service {
    background: #5665fc;
}

.btn-enterprice-service {
    background: #ff0164;
}

/* 1st solutions-column */
.solution-menu-header-mobile:nth-child(1 of .solution-menu-header-mobile) {
    border-bottom-color: #33d09b;
}

/* 2nd solutions-column */
.solution-menu-header-mobile:nth-child(2 of .solution-menu-header-mobile) {
    border-bottom-color: #5665fc;
}

/* 3rd solutions-column */
.solution-menu-header-mobile:nth-child(3 of .solution-menu-header-mobile) {
    border-bottom-color: #ff0164;
}

/* 1st solutions-column */
.solution-menu-header.ai-services h3 {
    border-bottom-color: #33d09b;
}

/* 2nd solutions-column */
.solution-menu-header.dev-tier h3 {
    border-bottom-color: #5665fc;
}

/* 3rd solutions-column */
.solution-menu-header.enterprise h3 {
    border-bottom-color: #ff0164;
}

/* ========================================
        RESPONSIVE - DESKTOP
        ======================================== */

/* Desktop - 2800px+ */
@media (min-width: 2800px) {
    .dashboard-menu-bar {
        gap: 50px;
        padding: 14px 28px;
    }

    .menu-item {
        font-size: 18px;
    }

    .menu-dropdown {
        width: 65vw;
        max-width: 1600px;
        min-width: 1300px;
        padding: 40px;
    }

    /* Platform-specific dropdown sizing */
    .menu-dropdown:not(.menu-dropdown-solution) {
        width: 50vw;
        max-width: 1150px;
        min-width: 900px;
    }

    .mega-menu-platform {
        gap: 40px;
    }

    .mega-menu-column h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .mega-menu-link {
        font-size: 18px;
        padding: 7px 0;
    }

    .mega-menu-card-header {
        gap: 10px;
        margin-bottom: 14px;
    }

    .mega-menu-card-icon {
        width: 40px;
        height: 40px;
    }

    .mega-menu-card h4 {
        font-size: 22px;
    }

    .mega-menu-card p {
        font-size: 16px;
    }

    .mega-menu-card-btn {
        font-size: 16px;
        padding: 14px 32px;
    }

    .mega-menu-solutions {
        gap: 25px;
    }

    .solutions-column h3 {
        font-size: 22px;
        font-weight: 600;
    }

    .solutions-item {
        font-size: 18px;
        padding: 7px 0;
    }

    .solution-menu-header {
        gap: 10px;
        margin-bottom: 14px;
    }

    .solution-menu-header img {
        width: 52px;
        height: 52px;
        padding: 10px;
    }

    .solution-menu-header i {
        width: 52px;
        height: 52px;
        padding: 10px;
        font-size: 26px;
    }

    .btn-solution-menu {
        font-size: 18px;
        padding: 16px 36px;
    }
}

/* Desktop - 1866px to 2799px */
@media (min-width: 1866px) and (max-width: 2799px) {
    .dashboard-menu-bar {
        gap: 40px;
        padding: 12px 24px;
    }

    .menu-item {
        font-size: 16px;
    }

    .menu-dropdown {
        width: 70vw;
        max-width: 1400px;
        min-width: 1100px;
        padding: 36px;
    }

    /* Platform-specific dropdown sizing */
    .menu-dropdown:not(.menu-dropdown-solution) {
        width: 55vw;
        max-width: 1000px;
        min-width: 800px;
    }

    .mega-menu-platform {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .mega-menu-column h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .mega-menu-link {
        font-size: 15px;
        padding: 6px 0;
    }

    .mega-menu-card-header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .mega-menu-card-icon {
        width: 28px;
        height: 28px;
    }

    .mega-menu-card h4 {
        font-size: 18px;
    }

    .mega-menu-card p {
        font-size: 14px;
    }

    .mega-menu-card-btn {
        font-size: 14px;
    }

    .mega-menu-solutions {
        gap: 20px;
    }

    .solutions-column h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .solutions-item {
        font-size: 15px;
        padding: 6px 0;
    }

    .solution-menu-header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .solution-menu-header img {
        width: 44px;
        height: 44px;
        padding: 8px;
    }

    .solution-menu-header i {
        width: 44px;
        height: 44px;
        padding: 8px;
        font-size: 22px;
    }

    .btn-solution-menu {
        font-size: 16px;
        padding: 14px 32px;
    }
}

/* Desktop - 1400px to 1865px */
@media (min-width: 1400px) and (max-width: 1865px) {
    .dashboard-menu-bar {
        gap: 36px;
        padding: 11px 22px;
    }

    .menu-item {
        font-size: 15px;
    }

    .menu-dropdown {
        width: 75vw;
        max-width: 1200px;
        min-width: 900px;
        padding: 28px;
    }

    /* Platform-specific dropdown sizing */
    .menu-dropdown:not(.menu-dropdown-solution) {
        width: 60vw;
        max-width: 850px;
        min-width: 650px;
    }

    .mega-menu-platform {
        gap: 24px;
    }

    .mega-menu-column h3 {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .mega-menu-link {
        font-size: 13px;
        padding: 4px 0;
    }

    .mega-menu-card {
        padding: 18px;
    }

    .mega-menu-card-header {
        gap: 6px;
        margin-bottom: 8px;
    }

    .mega-menu-card-icon {
        width: 24px;
        height: 24px;
    }

    .mega-menu-card h4 {
        font-size: 14px;
        font-weight: 500;
    }

    .mega-menu-card p {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .mega-menu-card-btn {
        font-size: 11px;
        padding: 8px 20px;
    }

    .mega-menu-solutions {
        gap: 14px;
    }

    .solutions-column h3 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .solutions-item {
        font-size: 13px;
        padding: 4px 0;
    }

    .solution-menu-header {
        gap: 6px;
        margin-bottom: 10px;
    }

    .solution-menu-header img {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .solution-menu-header i {
        width: 32px;
        height: 32px;
        padding: 6px;
        font-size: 16px;
    }

    .btn-solution-menu {
        font-size: 13px;
        padding: 11px 26px;
    }
}

/* Tablet Landscape - 1025px to 1399px */
@media (min-width: 1025px) and (max-width: 1399px) {
    .dashboard-menu-bar {
        gap: 32px;
        padding: 10px 20px;
    }

    .menu-item {
        font-size: 15px;
    }

    .menu-dropdown {
        width: 80vw;
        max-width: 1000px;
        min-width: 800px;
        padding: 24px;
    }

    /* Platform-specific dropdown sizing */
    .menu-dropdown:not(.menu-dropdown-solution) {
        width: 65vw;
        max-width: 750px;
        min-width: 600px;
    }

    .mega-menu-platform {
        gap: 20px;
    }

    .mega-menu-column h3 {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .mega-menu-link {
        font-size: 12px;
        padding: 3px 0;
    }

    .mega-menu-card {
        padding: 14px;
    }

    .mega-menu-card-header {
        gap: 5px;
        margin-bottom: 6px;
    }

    .mega-menu-card-icon {
        width: 24px;
        height: 24px;
    }

    .mega-menu-card h4 {
        font-size: 13px;
        font-weight: 500;
    }

    .mega-menu-card p {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .mega-menu-card-btn {
        font-size: 10px;
        padding: 7px 18px;
    }

    .mega-menu-solutions {
        gap: 12px;
    }

    .solutions-column h3 {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .solutions-item {
        font-size: 12px;
        padding: 3px 0;
    }

    .solution-menu-header {
        gap: 5px;
        margin-bottom: 8px;
    }

    .solution-menu-header img {
        width: 28px;
        height: 28px;
        padding: 5px;
    }

    .solution-menu-header i {
        width: 28px;
        height: 28px;
        padding: 5px;
        font-size: 14px;
    }

    .btn-solution-menu {
        font-size: 12px;
        padding: 10px 24px;
    }
}

/* Tablet Portrait - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .dashboard-menu-bar {
        gap: 28px;
        padding: 10px 18px;
    }

    .menu-item {
        font-size: 14px;
    }

    .menu-dropdown {
        width: 90vw;
        min-width: 90vw;
        max-width: none;
        padding: 24px;
    }

    /* Platform-specific dropdown sizing */
    .menu-dropdown:not(.menu-dropdown-solution) {
        width: 75vw;
        min-width: 75vw;
    }

    .mega-menu-platform {
        gap: 20px;
    }

    .mega-menu-column h3 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .mega-menu-link {
        font-size: 15px;
        padding: 6px 0;
    }

    .mega-menu-card {
        padding: 20px;
    }

    .mega-menu-card-header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .mega-menu-card-icon {
        width: 28px;
        height: 28px;
    }

    .mega-menu-card h4 {
        font-size: 16px;
        font-weight: 500;
    }

    .mega-menu-card p {
        font-size: 14px;
    }

    .mega-menu-card-btn {
        font-size: 14px;
        padding: 10px 24px;
    }

    .mega-menu-solutions {
        gap: 12px;
    }

    .menu-dropdown-solution {
        min-width: 90vw;
        width: 90vw;
    }

    .solutions-column h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .solutions-item {
        font-size: 15px;
        padding: 6px 0;
    }

    .solution-menu-header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .solution-menu-header img {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .solution-menu-header i {
        width: 40px;
        height: 40px;
        padding: 8px;
        font-size: 20px;
    }

    .btn-solution-menu {
        font-size: 14px;
        padding: 12px 28px;
    }
}

/* ========================================
        MOBILE - MODAL APPROACH
        ======================================== */

/* Mobile - 767px and below */
@media (max-width: 767px) {

    /* Menu Bar */
    .dashboard-menu-bar {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1px;
        padding: 12px 20px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        z-index: 2;
    }

    .dashboard-menu-bar::-webkit-scrollbar {
        display: none;
    }

    .menu-item {
        font-size: 14px;
        width: auto;
        padding: 8px 12px;
        flex-shrink: 0;
    }

    /* Hide desktop dropdown */
    .menu-dropdown {
        display: none;
    }

    /* Modal Overlay */
    .mega-menu-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        display: none;
    }

    .mega-menu-modal.active {
        display: block;
    }

    /* Modal Backdrop */
    .mega-menu-modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        -webkit-backdrop-filter: blur(8px);
        animation: fadeIn 0.3s ease;
    }

    /* Modal Content (Bottom Sheet) */
    .mega-menu-modal-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.24);
        max-height: 85vh;
        overflow-y: auto;
        animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Modal Header */
    .mega-menu-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 2px solid #e5e7eb;
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 10;
    }

    .mega-menu-modal-title {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mega-menu-modal-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mega-menu-modal-demo-btn {
        background: #5B7BFF;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .mega-menu-modal-close {
        background: transparent;
        border: none;
        color: #6b7280;
        font-size: 28px;
        cursor: pointer;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    /* Modal Body */
    .mega-menu-modal-body {
        padding: 20px;
    }

    /* Flat Grid Layout */
    .mega-menu-flat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
    }

    .mega-menu-flat-grid .mega-menu-link {
        font-size: 15px;
        padding: 8px 0;
        margin: 0;
        color: #1a1a1a;
    }

    .mega-menu-flat-grid .solutions-item {
        font-size: 15px;
        padding: 8px 0;
        color: #1a1a1a;
    }

    /* Mobile Solution Menu Header */
    .solution-menu-header-mobile {
        margin-bottom: 16px;
        padding-bottom: 18px;
    }

    .solution-menu-header-mobile img,
    .solution-menu-header-mobile i {
        width: 48px;
        height: 48px;
        padding: 10px;
        border-radius: 8px;
        flex-shrink: 0;
        margin-bottom: 8px;
    }

    .solution-menu-header-mobile i {
        align-content: center;
        margin-bottom: 10px;
    }

    .solution-menu-header-mobile h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        border: none;
        padding: 0;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .btn-solution-menu {
        font-size: 13px;
        margin-bottom: 48px;
        margin-top: 32px;
        width: 100%;
    }

    .solution-menu-header {
        gap: 6px;
        margin-bottom: 10px;
    }

    .solution-menu-header img {
        width: 36px;
        height: 36px;
        padding: 7px;
    }

    .solution-menu-header i {
        width: 36px;
        height: 36px;
        padding: 7px;
        font-size: 18px;
    }

    .solutions-item img {
        width: 24px;
        flex-shrink: 0;
    }

    .solutions-item {
        align-items: start;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .dashboard-menu-bar {
        gap: 1px;
        padding: 10px 16px;
    }

    .menu-item {
        font-size: 11px;
        padding: 6px 10px;
    }

    .mega-menu-modal-header {
        padding: 16px;
    }

    .mega-menu-modal-title {
        font-size: 16px;
    }

    .mega-menu-modal-demo-btn {
        font-size: 13px;
        padding: 7px 16px;
    }

    .mega-menu-modal-body {
        padding: 16px;
    }

    .mega-menu-flat-grid {
        gap: 4px 16px;
    }

    .mega-menu-flat-grid .mega-menu-link,
    .mega-menu-flat-grid .solutions-item {
        font-size: 14px;
        padding: 7px 0;
    }

    .solution-menu-header-mobile {
        gap: 10px;
        margin-bottom: 18px;
    }

    .solution-menu-header-mobile img,
    .solution-menu-header-mobile i {
        width: 40px;
        height: 40px;
    }

    .solution-menu-header-mobile i {

        align-content: center;
    }

    .solution-menu-header-mobile h3 {
        font-size: 16px;
    }

    .btn-solution-menu {
        font-size: 12px;
    }

    .solution-menu-header img {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .solution-menu-header i {
        width: 32px;
        height: 32px;
        padding: 6px;
        font-size: 16px;
    }
}

/* Mobile - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .menu-item {
        font-size: 12px;
        width: auto;
        padding: 8px 12px;
        flex-shrink: 0;
    }
}


.btn-solution-menu {
    border-radius: 50px;
}

.solution-header-style2 h3 {
    text-align: start;
    margin-left: 0px;
    margin-right: 0px;
    border-bottom: none !important;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.solution-header-style2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.solution-header-style2 i {
    align-self: self-start;
}

.solution-header-style2 img {
    align-self: self-start;
}

.solution-header-style2-title {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.solution-header-style2-title hr {
    flex: 1;
    border: none;
    height: 1px;
    background-color: #33d09b;
    margin: 0;
    opacity: 0.25;
}

.dev-tier-hr-line {
    background-color: #5665fc !important;
}

.enterprise-hr-line {
    background-color: #ff0164 !important;
}

.platform-menu-hr-line {
    background-color: #5B7BFF !important;
}

.menu-single-card {
    grid-template-columns: 1fr !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.video-thumbnail-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    height: 100px;
}

.video-thumbnail-container img {
    display: block;
    background: white;
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100px;
}

.video-play-preview-btn {
    width: 100%;
    background: rgb(91, 123, 255);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: rgba(91, 123, 255, 0.4) 0px 6px 20px;
    transition: 0.3s;
    margin-bottom: 4px;
    transform: translateY(-2px);
}

.video-play-preview-btn i {
    font-size: 18px;
}




/* ========================================
           FOOTER - NEW DESIGN
           ======================================== */
.footer {
    width: 100%;
    background: white;
    padding: 60px 40px 32px;
    border-top: 1px solid #e5e7eb;
    margin-top: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-container {
    margin: 0px 10%;
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    /* margin-bottom: 8px; */
}

.footer-logo img {
    height: 32px;
    width: auto;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
    line-height: 1.5;

}

.footer-links li a:hover {
    color: #5B7BFF;
}

/* Copyright */
.footer-copyright {
    max-width: 1400px;
    margin: 0px 10%;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========================================
        RESPONSIVE - DESKTOP
        ======================================== */

/* Desktop - 2800px+ */
@media (min-width: 2800px) {
    .footer {
        padding: 80px 60px 40px;
    }

    .footer-container {
        max-width: 2800px;
        gap: 60px;
        margin-bottom: 60px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-column-title {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 14px;
    }

    .footer-links li a {
        font-size: 16px;
    }

    .footer-copyright {
        max-width: 1800px;
        font-size: 15px;
        padding-top: 40px;
    }
}

/* Desktop - 1866px to 2799px */
@media (min-width: 1866px) and (max-width: 2799px) {
    .footer {
        padding: 70px 50px 36px;
    }

    .footer-container {
        max-width: 1800px;
        gap: 54px;
        margin-bottom: 54px;
    }

    .footer-logo img {
        height: 36px;
    }

    .footer-column-title {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .footer-links {
        gap: 13px;
    }

    .footer-links li a {
        font-size: 15px;
    }

    .footer-copyright {
        max-width: 1600px;
        font-size: 14px;
        padding-top: 36px;
    }
}

/* Desktop - 1400px to 1865px */
@media (min-width: 1400px) and (max-width: 1865px) {
    .footer {
        padding: 60px 40px 32px;
    }

    .footer-container {
        max-width: 1400px;
        gap: 48px;
        margin-bottom: 48px;
    }

    .footer-logo img {
        height: 32px;
    }

    .footer-column-title {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links li a {
        font-size: 14px;
    }

    .footer-copyright {
        max-width: 1400px;
        font-size: 13px;
        padding-top: 32px;
    }
}

/* Tablet Landscape - 1025px to 1399px */
@media (min-width: 1025px) and (max-width: 1399px) {
    .footer {
        padding: 55px 35px 30px;
    }

    .footer-container {
        max-width: 1200px;
        gap: 40px;
        margin-bottom: 44px;
    }

    .footer-logo img {
        height: 30px;
    }

    .footer-column-title {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .footer-links {
        gap: 11px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-copyright {
        max-width: 1200px;
        font-size: 12px;
        padding-top: 30px;
    }
}

/* Tablet Portrait - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        padding: 50px 30px 28px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 36px;
        margin-bottom: 40px;
    }

    .footer-logo-column {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .footer-logo img {
        height: 28px;
    }

    .footer-column-title {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
        padding-top: 28px;
    }
}

/* ========================================
        RESPONSIVE - MOBILE
        ======================================== */

/* Mobile - 767px and below */
@media (max-width: 767px) {
    .footer {
        padding: 40px 24px 24px;
        margin-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-logo-column {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }

    .footer-logo img {
        height: 26px;
    }

    .footer-column-title {
        font-size: 11px;
        margin-bottom: 10px;
        letter-spacing: 0.6px;
    }

    .footer-links {
        gap: 9px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 11px;
        padding-top: 24px;
        margin: auto;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .footer {
        padding: 36px 20px 20px;
        margin-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 28px;
        margin: auto;
    }

    .footer-logo-column {
        margin-bottom: 4px;
    }

    .footer-logo img {
        height: 24px;
    }

    .footer-column-title {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 10px;
        padding-top: 20px;
    }
}











/* ========================================
   NEW HEADER MENU CARD-BASED MENU LAYOUT STYLES
   ======================================== */

/* Card Layout Container */
.mega-menu-card-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Header with Icon */
.mega-menu-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e5e7eb;
}

.mega-menu-header-icon {
    width: 40px !important;
    height: 40px !important;
    background: #f3f3ff;
    border-radius: 8px;
    padding: 6px;
}

.mega-menu-card-header h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    border: none;
    padding: 0;
}

/* Card Grid Layout - Default 2x2 */
.mega-menu-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* 3 Column Grid for Core Capabilities */
.mega-menu-card-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

/* Individual Card Item */
.mega-menu-card-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mega-menu-card-item:hover {
    background: #f8f9ff;
    border-color: #5B7BFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 123, 255, 0.15);
}

.mega-menu-card-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-card-item-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    filter: brightness(0) invert(0);
}

.mega-menu-card-item h4 {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.mega-menu-card-item p {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Solution Card Specific Styles */
.mega-menu-solution-card {
    gap: 8px;
}

.solution-card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2px;
}

.solution-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ========================================
   EXISTING MENU STYLES (Modified)
   ======================================== */

.menu-dropdown {
    position: fixed;
    left: 0%;
    margin-top: 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    width: auto;
    max-width: 650px;
    min-width: 500px;
}

.menu-dropdown.menu-dropdown-solution {
    max-width: 750px;
    min-width: 600px;
}

.menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE STYLES FOR CARD LAYOUT
   ======================================== */

/* Desktop Large - 1400px to 1865px (matching original pattern) */
@media (min-width: 1400px) and (max-width: 1865px) {
    .menu-dropdown {
        max-width: 600px;
        min-width: 480px;
    }

    .menu-dropdown.menu-dropdown-solution {
        max-width: 700px;
        min-width: 580px;
    }

    .mega-menu-card-grid {
        gap: 14px;
    }

    .mega-menu-card-item {
        padding: 16px;
    }

    .mega-menu-card-item h4 {
        font-size: 13px;
        font-weight: 400;
    }

    .mega-menu-card-item-icon {
        width: 16px;
        height: 16px;
    }

    .mega-menu-card-item p {
        font-size: 11px;
    }

    .mega-menu-header-icon,
    .solution-card-icon {
        width: 28px !important;
        height: 28px !important;
        padding: 5px;
    }

    .mega-menu-card-header h3 {
        font-size: 13px;
        font-weight: 500;
    }
}

/* Desktop Medium - 1025px to 1399px */
@media (min-width: 1025px) and (max-width: 1399px) {
    .menu-dropdown {
        min-width: 500px;
        max-width: 650px;
        padding: 24px;
    }

    .menu-dropdown.menu-dropdown-solution {
        max-width: 700px;
        min-width: 550px;
    }

    .mega-menu-card-grid {
        gap: 12px;
    }

    .mega-menu-card-item {
        padding: 14px;
    }

    .mega-menu-card-item h4 {
        font-size: 12px;
        font-weight: 400;
    }

    .mega-menu-card-item-icon {
        width: 15px;
        height: 15px;
    }

    .mega-menu-card-item p {
        font-size: 10px;
    }

    .mega-menu-header-icon,
    .solution-card-icon {
        width: 24px !important;
        height: 24px !important;
        padding: 5px;
    }

    .mega-menu-card-header h3 {
        font-size: 12px;
        font-weight: 500;
    }
}

/* Tablet Landscape - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .menu-dropdown {
        width: 90vw;
        min-width: 90vw;
        max-width: none;
        padding: 20px;
    }

    .menu-dropdown.menu-dropdown-solution {
        min-width: 90vw;
        width: 90vw;
    }

    .mega-menu-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mega-menu-card-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu-card-item {
        padding: 14px;
    }

    .mega-menu-card-item h4 {
        font-size: 15px;
        font-weight: 400;
    }

    .mega-menu-card-item-icon {
        width: 18px;
        height: 18px;
    }

    .mega-menu-card-item p {
        font-size: 14px;
    }

    .mega-menu-header-icon,
    .solution-card-icon {
        width: 32px !important;
        height: 32px !important;
        padding: 6px;
    }

    .mega-menu-card-header h3 {
        font-size: 16px;
        font-weight: 500;
    }
}

/* Mobile - max-width 767px */
@media (max-width: 767px) {
    .menu-dropdown {
        display: none;
    }

    /* Mobile uses modal approach, no desktop dropdown */

    /* Mobile Modal Card Layout */
    .mega-menu-modal-body .mega-menu-card-layout {
        gap: 16px;
    }

    .mega-menu-modal-body .mega-menu-card-header {
        padding-bottom: 12px;
    }

    .mega-menu-modal-body .mega-menu-header-icon {
        width: 36px !important;
        height: 36px !important;
        padding: 7px;
    }

    .mega-menu-modal-body .mega-menu-card-header h3 {
        font-size: 16px;
    }

    .mega-menu-modal-body .mega-menu-card-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .mega-menu-modal-body .mega-menu-card-item {
        padding: 14px;
    }

    .mega-menu-modal-body .mega-menu-card-item h4 {
        font-size: 15px;
    }

    .mega-menu-modal-body .mega-menu-card-item-icon {
        width: 18px;
        height: 18px;
    }

    .mega-menu-modal-body .mega-menu-card-item p {
        font-size: 13px;
    }
}

#user-menu {
    visibility: hidden;
}



/* .dashboard-menu-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
} */






/* ================================================================
   CREATE APP IAP MODAL - RESPONSIVE CSS
   Follows the same breakpoint pattern as the main page CSS
   ================================================================ */

/* ── Overlay ───────────────────────────────────────────────── */
.create-app-iap-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: create-app-iap-fadein 0.2s ease;
}

.create-app-iap-modal-overlay.create-app-iap-modal-active {
    display: flex;
}

@keyframes create-app-iap-fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes create-app-iap-slideup {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

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

/* ── Outer container ───────────────────────────────────────── */
.create-app-iap-modal-container {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: create-app-iap-slideup 0.28s cubic-bezier(0.34, 1.36, 0.64, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── TOP CARD ──────────────────────────────────────────────── */
.create-app-iap-modal-top-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    min-height: 380px;
    position: relative;
}

/* ── Close button ──────────────────────────────────────────── */
.create-app-iap-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(107, 114, 128);
    font-size: 18px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
    padding: 0;
    line-height: 1;
}

.create-app-iap-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

/* ── LEFT COLUMN ───────────────────────────────────────────── */
.create-app-iap-modal-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px 28px 28px;
    /* bottom = top = 28px */
    overflow: hidden;
}

.create-app-iap-modal-left-heading {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
}

.create-app-iap-modal-left-image {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: auto auto 0 auto;
    align-self: center;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

/* ── Vertical divider ──────────────────────────────────────── */
.create-app-iap-modal-divider {
    width: 1px;
    background: #e5e7eb;
    margin: 24px 0;
    flex-shrink: 0;
}

/* ── RIGHT COLUMN ──────────────────────────────────────────── */
.create-app-iap-modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 24px 28px 24px;
    gap: 0;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    margin: 8px 12px 8px 12px;
}

/* Star / simulator icon in right column */
.create-app-iap-modal-right img {
    width: 24px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

/* Star icon (fallback span) */
.create-app-iap-modal-star-icon {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1;
    display: block;
    color: #515bc2;
}

/* Section title */
.create-app-iap-modal-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 18px;
    line-height: 1.3;
    letter-spacing: -0.1px;
}

/* Feature list */
.create-app-iap-modal-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
}

.create-app-iap-modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
    line-height: 1.3;
}

.create-app-iap-modal-features li .fa-check {
    color: #22c55e;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: 700;
}

/* CTA button */
.create-app-iap-modal-cta-btn {
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(83, 150, 252, 0.25) 0px 4px 12px;
    position: relative;
    z-index: 1;
    font-family: Inter, sans-serif;
    flex-shrink: 0;
    background: linear-gradient(90deg, rgb(86, 101, 252), rgb(135, 94, 248));
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    transition: 0.3s;
    overflow: hidden;
    white-space: nowrap;

    margin-bottom: 8px;
    text-decoration: none;
}

.create-app-iap-modal-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.5);
}

.create-app-iap-modal-cta-btn:active {
    transform: translateY(0);
}

/* Sub text below button */
.create-app-iap-modal-cta-sub {
    font-size: 11.5px;
    color: #9ca3af;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* ── BOTTOM CARD ───────────────────────────────────────────── */
.create-app-iap-modal-bottom-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow icon in bottom card */
.create-app-iap-modal-bottom-card img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.create-app-iap-modal-skip-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #515bc2;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: gap 0.18s, opacity 0.15s;
    letter-spacing: 0.1px;
    padding: 0;
}

.create-app-iap-modal-skip-btn:hover {
    opacity: 0.8;
    gap: 10px;
}

.create-app-iap-modal-skip-btn i {
    font-size: 13px;
    transition: transform 0.18s;
}

.create-app-iap-modal-skip-btn:hover i {
    transform: translateX(3px);
}


/* ================================================================
   RESPONSIVE - Desktop 2800px+
   ================================================================ */
@media (min-width: 2800px) {
    .create-app-iap-modal-container {
        max-width: 960px;
        gap: 14px;
    }

    .create-app-iap-modal-top-card {
        min-height: 520px;
        border-radius: 24px;
    }

    .create-app-iap-modal-left {
        padding: 40px 32px 40px 40px;
    }

    .create-app-iap-modal-left-heading {
        font-size: 23px;
    }

    .create-app-iap-modal-left-image {
        max-width: 320px;
    }

    .create-app-iap-modal-right {
        padding: 40px 36px 40px 32px;
    }

    .create-app-iap-modal-right img {
        width: 36px;
        margin-bottom: 14px;
    }

    .create-app-iap-modal-section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .create-app-iap-modal-features {
        gap: 18px;
        margin-bottom: 30px;
    }

    .create-app-iap-modal-features li {
        font-size: 18px;
        gap: 12px;
    }

    .create-app-iap-modal-features li .fa-check {
        font-size: 16px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 18px;
        padding: 20px 40px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .create-app-iap-modal-cta-sub {
        font-size: 14px;
    }

    .create-app-iap-modal-bottom-card {
        border-radius: 20px;
        padding: 22px 32px;
    }

    .create-app-iap-modal-bottom-card img {
        width: 28px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 18px;
        gap: 8px;
    }

    .create-app-iap-modal-close {
        width: 38px;
        height: 38px;
        font-size: 22px;
        top: 18px;
        right: 22px;
    }

    .create-app-iap-modal-divider {
        margin: 32px 0;
    }
}


/* ================================================================
   RESPONSIVE - Desktop 1866px to 2799px
   ================================================================ */
@media (min-width: 1866px) and (max-width: 2799px) {
    .create-app-iap-modal-container {
        max-width: 850px;
        gap: 12px;
    }

    .create-app-iap-modal-top-card {
        min-height: 460px;
        border-radius: 22px;
    }

    .create-app-iap-modal-left {
        padding: 34px 28px 34px 34px;
    }

    .create-app-iap-modal-left-heading {
        font-size: 23px;
    }

    .create-app-iap-modal-left-image {
        max-width: 280px;
    }

    .create-app-iap-modal-right {
        padding: 34px 30px 34px 28px;
    }

    .create-app-iap-modal-right img {
        width: 30px;
        margin-bottom: 12px;
    }

    .create-app-iap-modal-section-title {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .create-app-iap-modal-features {
        gap: 16px;
        margin-bottom: 28px;
    }

    .create-app-iap-modal-features li {
        font-size: 16px;
        gap: 11px;
    }

    .create-app-iap-modal-features li .fa-check {
        font-size: 14px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 16px;
        padding: 18px 36px;
        border-radius: 13px;
        margin-bottom: 10px;
    }

    .create-app-iap-modal-cta-sub {
        font-size: 13px;
    }

    .create-app-iap-modal-bottom-card {
        border-radius: 18px;
        padding: 20px 28px;
    }

    .create-app-iap-modal-bottom-card img {
        width: 24px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 16px;
        gap: 7px;
    }

    .create-app-iap-modal-close {
        width: 34px;
        height: 34px;
        font-size: 20px;
        top: 16px;
        right: 22px;
    }

    .create-app-iap-modal-divider {
        margin: 28px 0;
    }
}


/* ================================================================
   RESPONSIVE - Desktop 1400px to 1865px
   ================================================================ */
@media (min-width: 1400px) and (max-width: 1865px) {
    .create-app-iap-modal-container {
        max-width: 760px;
        gap: 10px;
    }

    .create-app-iap-modal-top-card {
        min-height: 420px;
    }

    .create-app-iap-modal-left {
        padding: 30px 22px 30px 30px;
    }

    .create-app-iap-modal-left-heading {
        font-size: 20px;
    }

    .create-app-iap-modal-left-image {
        max-width: 250px;
    }

    .create-app-iap-modal-right {
        padding: 30px 22px 30px 22px;
    }

    .create-app-iap-modal-right img {
        width: 26px;
        margin-bottom: 10px;
    }

    .create-app-iap-modal-section-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .create-app-iap-modal-features {
        gap: 14px;
        margin-bottom: 24px;
    }

    .create-app-iap-modal-features li {
        font-size: 14px;
        gap: 10px;
    }

    .create-app-iap-modal-features li .fa-check {
        font-size: 12px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 14px;
        padding: 16px 32px;
        margin-bottom: 8px;
    }

    .create-app-iap-modal-cta-sub {
        font-size: 12px;
    }

    .create-app-iap-modal-bottom-card {
        padding: 17px 24px;
    }

    .create-app-iap-modal-bottom-card img {
        width: 20px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 14px;
    }

    .create-app-iap-modal-close {
        width: 30px;
        height: 30px;
        font-size: 18px;
        top: 20px;
        right: 20px;
    }
}


/* ================================================================
   RESPONSIVE - Tablet Landscape 1025px to 1399px
   ================================================================ */
@media (min-width: 1025px) and (max-width: 1399px) {
    .create-app-iap-modal-container {
        max-width: 720px;
        gap: 10px;
    }

    .create-app-iap-modal-top-card {
        min-height: 400px;
    }

    .create-app-iap-modal-left {
        padding: 28px 20px 28px 28px;
    }

    .create-app-iap-modal-left-heading {
        font-size: 18px;
    }

    .create-app-iap-modal-left-image {
        max-width: 235px;
    }

    .create-app-iap-modal-right {
        padding: 28px 22px 28px 20px;
    }

    .create-app-iap-modal-right img {
        width: 24px;
        margin-bottom: 10px;
    }

    .create-app-iap-modal-section-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .create-app-iap-modal-features {
        gap: 13px;
        margin-bottom: 22px;
    }

    .create-app-iap-modal-features li {
        font-size: 14px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 14px;
        padding: 15px 30px;
        margin-bottom: 8px;
    }

    .create-app-iap-modal-cta-sub {
        font-size: 11.5px;
    }

    .create-app-iap-modal-bottom-card {
        padding: 16px 24px;
    }

    .create-app-iap-modal-bottom-card img {
        width: 20px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 14px;
    }
}


/* ================================================================
   RESPONSIVE - Tablet Portrait 768px to 1024px
   ================================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .create-app-iap-modal-container {
        max-width: 690px;
        gap: 10px;
    }

    .create-app-iap-modal-top-card {
        min-height: 390px;
    }

    .create-app-iap-modal-left {
        padding: 26px 18px 26px 24px;
    }

    .create-app-iap-modal-left-heading {
        font-size: 17px;
    }

    .create-app-iap-modal-left-image {
        max-width: 220px;
    }

    .create-app-iap-modal-right {
        padding: 26px 20px 26px 18px;
    }

    .create-app-iap-modal-right img {
        width: 22px;
        margin-bottom: 9px;
    }

    .create-app-iap-modal-section-title {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .create-app-iap-modal-features {
        gap: 11px;
        margin-bottom: 20px;
    }

    .create-app-iap-modal-features li {
        font-size: 13px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 14px;
        padding: 14px 28px;
        margin-bottom: 8px;
    }

    .create-app-iap-modal-cta-sub {
        font-size: 11px;
    }

    .create-app-iap-modal-bottom-card {
        padding: 15px 20px;
    }

    .create-app-iap-modal-bottom-card img {
        width: 18px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 13.5px;
    }
}


/* ================================================================
   RESPONSIVE - Mobile 520px and below (stack layout)
   ================================================================ */
@media (max-width: 520px) {
    .create-app-iap-modal-container {
        max-width: 100%;
        gap: 8px;
    }

    .create-app-iap-modal-top-card {
        flex-direction: column;
        min-height: unset;
        border-radius: 16px;
    }

    /* Left: row layout with text + image side by side */
    .create-app-iap-modal-left {
        flex: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 20px 0 20px;
        min-height: unset;
    }

    .create-app-iap-modal-left-heading {
        font-size: 14px;
        flex: 1;
        letter-spacing: -0.2px;
    }

    .create-app-iap-modal-left-image {
        max-width: 100px;
        margin: 0;
        align-self: flex-start;
    }

    /* Horizontal divider */
    .create-app-iap-modal-divider {
        width: auto;
        height: 1px;
        margin: 0 20px;
    }

    .create-app-iap-modal-right {
        padding: 18px 20px 20px;
    }

    .create-app-iap-modal-right img {
        width: 20px;
        margin-bottom: 8px;
    }

    .create-app-iap-modal-section-title {
        font-size: 13.5px;
        margin-bottom: 12px;
    }

    .create-app-iap-modal-features {
        gap: 10px;
        margin-bottom: 18px;
    }

    .create-app-iap-modal-features li {
        font-size: 12.5px;
        gap: 8px;
    }

    .create-app-iap-modal-features li .fa-check {
        font-size: 11px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 13px;
        padding: 13px 24px;
        margin-bottom: 7px;
        width: 100%;
        border-radius: 10px;
    }

    .create-app-iap-modal-cta-sub {
        font-size: 10.5px;
    }

    .create-app-iap-modal-bottom-card {
        border-radius: 14px;
        padding: 14px 20px;
    }

    .create-app-iap-modal-bottom-card img {
        width: 16px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 12.5px;
        gap: 5px;
    }

    .create-app-iap-modal-close {
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}


/* ================================================================
   RESPONSIVE - Small Mobile 380px and below
   ================================================================ */
@media (max-width: 380px) {

    /* Stack heading above image */
    .create-app-iap-modal-left {
        flex-direction: column;
        padding: 18px 18px 0 18px;
        gap: 10px;
    }

    .create-app-iap-modal-left-heading {
        font-size: 13px;
        flex: none;
    }

    .create-app-iap-modal-left-image {
        max-width: 140px;
        align-self: center;
        margin: 0 auto;
    }

    .create-app-iap-modal-divider {
        margin: 0 18px;
    }

    .create-app-iap-modal-right {
        padding: 16px 18px 18px;
    }

    .create-app-iap-modal-cta-btn {
        font-size: 12px;
        padding: 12px 20px;
    }

    .create-app-iap-modal-skip-btn {
        font-size: 12px;
    }
}

.footer {
    position: absolute;
    z-index: 20;
    display: none;
}