html, body{
    overflow-x: hidden !important;
}
.solutions-item-title{
    color:#0f1623;
}
.banner-content .title p[data-v-0bb9f87f]{
    width:100%
}

.banner-content .start-building {
    display: inline-block;
    white-space: normal;
    text-align: center;
    padding: 10px 50px;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Header buttons responsive styles */
.header-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-btns img {
    width: 110px;
    height: auto;
}

.mobile-app-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-app-buttons img {
    width: 60px;
    height: auto;
}

.list-wrap .card-wrap{
    margin-bottom: 20px!important;
}

/* Desktop - show desktop buttons, hide mobile buttons */
@media (min-width: 1024px) {
    .header-btns {
        display: flex;
    }
    .mobile-app-buttons {
        display: none;
    }
}

/* Tablet and Mobile - hide all header app buttons */
@media (max-width: 1023px) {
    .header-btns {
        display: none;
    }
    .mobile-app-buttons {
        display: none;
    }
}

/* Mobile navigation styles */
@media (max-width: 1023px) {
    .header .nav .item .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
    }
    
    .header .nav .item .sub-menu a {
        padding: 10px 0;
    }
}

/* Banner responsive styles - new approach */
/* Base banner styles for all devices */
.banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Non-desktop devices (992px and below) */
@media (max-width: 992px) {
    /* Reduce gap between header and banner */
    .banner {
        margin-top: -20px;
        padding-top: 0;
    }
    
    /* Specific styles for swiper banner */
    .swiper-banner-ad-false .banner[data-v-0bb9f87f] {
        padding: 10vw 0 0;
    }
    
    /* Center content for better mobile experience */
    .banner-content {
        align-items: center;
        text-align: center;
        padding-top: 5px; /* Reduced gap between banner top and title */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Fix button alignment in banner */
    .banner-content .start-building {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Layout padding adjustment */
@media screen and (max-width: 900px) { 
    #__layout #index { 
        padding-top: 17vw; 
    } 
    
    /* Make design-team plan sections full width on non-desktop */
    .design-team .container .left,
    .design-team .container .right {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .design-team .container .plans {
        flex-direction: column;
    }
    
    /* Set opacity of right-feature-list to 1 for non-desktop */
    .design-team .container .right #right-feature-list,
    .design-team .container .right #right-feature-list .item,
    .design-team .container .right #right-feature-list .item .feature-title,
    .design-team .container .right #right-feature-list .item .feature-desc {
        opacity: 1 !important;
    }
    
    /* Adjust title styling */
    .banner-content .title {
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .banner-content .title p[data-v-0bb9f87f] {
        font-size: 26px;
        line-height: 1.3;
        padding: 0;
        text-align: center;
    }
    
    /* Adjust subtitle styling */
    .banner-content .text {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: center;
        max-width: 90%;
    }
    
    /* Adjust button styling */
    .banner-content .start-building {
        padding: 12px 50px;
        font-size: 15px;
        border-radius: 4px;
    }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    .banner {
        padding-top: 10px;
    }
    
    .banner-content .title p[data-v-0bb9f87f] {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .banner-content .text {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .banner-content .start-building {
        padding: 10px 50px;
        font-size: 14px;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .banner-content .title p[data-v-0bb9f87f] {
        font-size: 20px;
        line-height: 1.1;
    }
    
    .banner-content .text {
        font-size: 13px;
        line-height: 1.2;
        max-width: 95%;
    }
    
    .banner-content .start-building {
        padding: 8px 50px;
        font-size: 13px;
    }
}

/* Footer Container Styles */
.footer-container {
    border-top: 1px solid rgba(248, 249, 252, .2) !important;
    padding-bottom: 0;
    padding-top: 80px;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #ffffff;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}


.mobile-menu-logo img {
    height: 4.2666666667vw !important;
        width: 31.2vw !important;
}

/* Footer center alignment for responsive devices */
@media (max-width: 1023px) {
    .footer-container .left-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-container .zego-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-container .talk-us-about {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    /* Footer menu collapsible for mobile/tablet */
    .footer-container .footer-menu-list .title {
        cursor: pointer;
        position: relative;
    }
    
    .footer-container .footer-menu-list .title::after {
        content: '+';
        font-size: 16px;
        font-weight: 600;
        margin-left: 8px;
        color: #666;
        transition: all 0.3s ease;
        display: inline-block;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        border-radius: 50%;
        background-color: #f0f0f0;
    }
    
    .footer-container .footer-menu-list .title.active::after {
        content: '−';
        background-color: #007bff;
        color: white;
        transform: rotate(0deg);
    }
    
    .footer-container .footer-menu-list .title:hover::after {
        background-color: #e0e0e0;
        transform: scale(1.1);
    }
    
    .footer-container .footer-menu-list .title.active:hover::after {
        background-color: #0056b3;
    }
    
    .footer-container .footer-menu-list .list-wrapper {
        display: none !important;
    }
    
    /* Website info text color */
    .footer-container .website-info {
        color: white;
    }
    
    .footer-container .website-info .beian,
    .footer-container .website-info .cookie-about,
    .footer-container .website-info .cookie-about a {
        color: white;
    }
    
    .footer-container .footer-menu-list .m-list-wrapper {
        display: none !important;
    }
    
    .footer-container .footer-menu-list .title.active + .m-list-wrapper {
        display: block !important;
    }
}


.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 0;
    flex: 1;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-nav-title:hover {
    background-color: #f8f9fa;
}

.mobile-nav-title span:first-child {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.mobile-nav-title span {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.mobile-nav-arrow {
    font-size: 14px;
    color: #000;
    transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-nav-arrow {
    transform: rotate(90deg);
}

.mobile-nav-link {
    display: block;
    padding: 20px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.mobile-nav-item.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-item {
    display: block;
    padding: 15px 20px 15px 40px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.mobile-submenu-item:hover {
    background-color: #e9ecef;
}

.mobile-submenu-item:last-child {
    border-bottom: none;
}

/* Mobile Menu Bottom */
.mobile-menu-bottom {
    padding: 20px;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-divider {
    height: 1px;
    background-color: #e9ecef;
    margin-bottom: 20px;
}

.mobile-app-download-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.mobile-app-btn {
    display: block;
    transition: transform 0.3s ease;
}

.mobile-app-btn:hover {
    transform: scale(1.05);
}

.mobile-app-btn img {
    width: 100px;
    height: auto;
}

/* Responsive adjustments for app buttons */
@media (max-width: 480px) {
    .mobile-app-download-buttons {
        gap: 10px;
        padding: 15px 0;
    }
    
    .mobile-app-btn img {
        width: 90px;
    }
}

/* Floating Chat Button */
.mobile-menu-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.mobile-menu-chat-btn:hover {
    transform: scale(1.1);
}

.chat-icon {
    font-size: 20px;
    color: white;
}

.whatsapp-icon{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: inline-block;
    background: #25d366;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width:32px;
    height:32px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu-container {
        max-width: 100%;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-nav-title {
        padding: 15px;
    }
    
    .mobile-submenu-item {
        padding: 12px 15px 12px 30px;
    }
}
.container{
    background: transparent;
}
@media screen and (min-width: 901px) {
    .download-btn[data-v-6be27fe0] {
        width:100%;
    }
    .download-btn[data-v-6be27fe0]:nth-of-type(n+3) {
        margin-top: 0px;
    }
        .feature-btn .feature-bar[data-v-6be27fe0] {
            gap:5px
        }
        .footer-container .cookie-about[data-v-655100f5] {
            width:350px;
        }
            .banner-ani-1[data-v-b324c596]{
                width:unset;
                height:unset;
                top:0px;
            }
}
@media screen and (max-width: 900px) {
    .download-btn[data-v-6be27fe0] {
        width:100%;
    }
    .download-btn[data-v-6be27fe0]:nth-of-type(n+3) {
        margin-top: 0px;
    }
    .feature-btn .feature-bar[data-v-6be27fe0] {
        gap:5px
    }
    .download-btn[data-v-6be27fe0]:not(:last-of-type) {
        margin-bottom:0px;
    }
}

.ajax-loader {
  display: inline-block;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

#response{
    padding:20px 0px;
}