/* Hero Section */
.agora-hero {
    position: relative;
    padding: 10rem 2rem 4rem;
    background: transparent;
    z-index: 9;
}

.agora-hero-visual {
    flex: 1;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agora-hero-visual img {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3)
}

.agora-hero-wrapper {
    max-width: 1225px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.agora-hero-content {
    max-width: 600px;
}

.agora-hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.agora-hero-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e3e3e3;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.agora-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #e3e3e3;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.agora-hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: left;
}

.agora-btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.agora-btn-primary {
    background: #ed654c;
    color: white;
}

.agora-btn-primary:hover {
    background: #e55a2b;
}

.agora-btn-secondary {
    background: transparent;
    color: #ff9784;
    border: 2px solid #ed654c;
}

.agora-btn-secondary:hover {
    background: #ed654c;
    color: white;
}

/* Spreadsheet Section */
.agora-spreadsheet-section {
    position: relative;
    text-align: center;
    background: transparent;
    z-index: 9;
}

.agora-spreadsheet-wrapper {
    max-width: 1400px;
    margin: 60px auto;
}

.agora-spreadsheet-question {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 400;
}

.agora-dashboard-container {
    width: 100%;
    max-width: 1225px;
    border-radius: 12px;
    margin: 0 auto 4rem;
    position: relative;
}

.agora-dashboard-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.agora-connection-statement {
    margin-bottom: 4rem;
}

.agora-connection-text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    color: white;
    max-width: 975px;
    margin: 0 auto;
}

.agora-highlight {
    color: #778fe6;
    font-weight: 500;
}

.agora-features-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
    max-width: 975px;
    margin: 0 auto;
}

.agora-feature-item {
    flex: 1;
    max-width: 320px;
    text-align: left;
}

.agora-feature-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.agora-line-blue {
    background: #778fe6;
}

.agora-line-orange {
    background: rgb(255,151,132);
}

.agora-line-red {
    background: #ff9784;
}

.agora-feature-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.agora-feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .agora-nav-menu {
        display: none;
    }

    .agora-hero-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .agora-hero-title {
        font-size: 3rem;
    }

    .agora-features-grid {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .agora-feature-item {
        text-align: center;
    }

    .agora-feature-line {
        margin: 0 auto;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .agora-nav-wrapper {
        padding: 1rem;
    }

    .agora-hero {
        padding: 6rem 1rem 0;
    }

    .agora-hero-title {
        font-size: 2.5rem;
    }

    .agora-hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .agora-btn {
        text-align: center;
    }

    .agora-connection-text {
        font-size: 1.75rem;
    }

}

@media (max-width: 480px) {
    .agora-spreadsheet-section {
        padding: 0 2rem;
    }
    
    .agora-hero-title {
        font-size: 2rem;
    }

    .agora-connection-text {
        font-size: 1.5rem;
    }

    .agora-dashboard-container img {
        object-fit: cover;
    }
}





/* ERP Circle Section */
.agora-erp-circle-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    background: transparent;
}

.agora-erp-circle-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.agora-erp-circle-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.agora-erp-circle-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    cursor: pointer;
}

.agora-erp-circle-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 800px) {
    .agora-erp-circle-section {
        padding: 4rem 0;
    }
}

@media screen and (max-width: 600px) {
    .agora-erp-circle-container {
        width: 400px;
        height: 400px;
    }
}

@media screen and (max-width: 400px) {
    .agora-erp-circle-container {
        width: 320px;
        height: 320px;
    }
}



/* One Dashboard Section */
.agora-one-dashboard-section {
    padding: 0 2rem;
    text-align: center;
    background: transparent;
}

.agora-one-dashboard-wrapper {
    position: relative;
    max-width: 710px;
    margin: 0 auto;
    background-color: rgb(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2rem;

    z-index: 999;
}

.agora-one-dashboard-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.agora-one-highlight {
    color: rgb(255,151,132);
    font-style: italic;
}

.agora-one-dashboard-text {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.agora-one-dashboard-btn {
    background: #4F52FF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

}

.agora-one-dashboard-btn:hover {
    background: rgb(79,82,255, 0.7);
}

/* Services Section */
.agora-services-main-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
}

.agora-services-main-wrapper {
    max-width: 1225px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.agora-services-label-text {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.agora-services-label-text img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.agora-services-main-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 4rem;
}

.agora-services-cards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
}

.agora-erp-card-section,
.agora-web-card-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    max-width: 1060px;
    width: 100%;
    max-height: 300px;
    background: linear-gradient(20deg, rgb(43, 43, 43, 0.9) 20%, rgba(0, 0, 0, 1) 80%);
    border-radius: 16px;
    margin: 0 auto;
    z-index: 9999;
    overflow: hidden;
}

.agora-erp-icons-area,
.agora-web-illustration-area {
    flex: 0 0 368px;
    max-width: 368px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.agora-erp-icons-area img,
.agora-web-illustration-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: right bottom;
}

.agora-erp-content-area,
.agora-web-content-area {
    margin: 30px auto;
    width: 100%;
    max-width: max-content;
    text-align: left;
}

.agora-erp-card-title,
.agora-web-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    margin-top: 1.6rem;
}

.agora-erp-card-subtitle,
.agora-web-card-subtitle {
    font-size: 1.05rem;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.agora-erp-features-list,
.agora-web-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-right: auto;
}

.agora-erp-features-list li,
.agora-web-features-list li {
    font-size: 1rem;
    color: #bbbbbb;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.agora-erp-features-list li::before,
.agora-web-features-list li::before {
    content: '•';
    color: white;
    position: relative;
    left: -10px;
    font-size: 1.2rem;
    font-weight: bold;
}



.agora-erp-buttons,
.agora-web-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.agora-erp-view-packages-btn,
.agora-web-view-packages-btn {
    background: #ff9784;
    color: white;
    border: none;
    padding: 11.9px 20.4px;
    padding-bottom: 12.9px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agora-erp-view-packages-btn:hover,
.agora-web-view-packages-btn:hover {
    background: rgb(181,52,34);
}

.agora-erp-learn-more-btn,
.agora-web-learn-more-btn {
    background: transparent;
    color: #ff9784;
    border: 2px solid #ff9784;
    padding: 9.9px 18.4px;
    padding-bottom: 10.9px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agora-erp-learn-more-btn:hover,
.agora-web-learn-more-btn:hover {
    background: #ff9784;
    color: white;
}

@media (max-width: 1024px) {
    .agora-erp-card-title {
        font-size: 1.5rem;
    }
    .agora-erp-card-section, .agora-web-features-list {
        font-size: 0.7rem;
    }
    .agora-erp-features-list li, .agora-web-features-list li {
        font-size: 0.9rem;
        line-height: 1.1;
        
    }
    .agora-erp-features-list li::before, .agora-web-features-list li::before {
        font-size: 0.6rem;
    }
}

@media (max-width: 928px) {
    .agora-erp-card-section,
    .agora-web-card-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        max-height: none;
    }

    .agora-erp-icons-area,
    .agora-web-illustration-area {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .agora-erp-content-area,
    .agora-web-content-area {
        text-align: left;
    }

    .agora-erp-buttons,
    .agora-web-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .agora-erp-view-packages-btn,
    .agora-web-view-packages-btn,
    .agora-erp-learn-more-btn,
    .agora-web-learn-more-btn {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .agora-services-main-section {
        padding: 5rem 0;
    }
    .agora-one-dashboard-section {
        padding: 0;
    }
    .agora-one-dashboard-wrapper {
        padding: 1rem;
    }
}